Skip to content

Commit

Permalink
CXCDS-12370: Fixed linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianHamilton committed Oct 14, 2024
1 parent 3b3f3fb commit 81496af
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion integration-libs/cds/src/config/default-cds-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ export function defaultCdsConfigFactory(): CdsConfig {
allowInsecureCookies: false,
},
},
}
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ describe('RecentSearchesComponent', () => {

expect(() => {
component.shareEvent(ev);
}).toThrowError();
}).toThrow();
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {

/**
* Only differences to the default cds config, they are merged together.
*
*
* @see defaultCdsConfigFactory
* @see CdsModule.forRoot
*/
Expand All @@ -43,11 +43,11 @@ const cds1: CdsConfig = {
};

/**
* Only differences to the default cds config, they are merged together.
*
* @see defaultCdsConfigFactory
* @see CdsModule.forRoot
*/
* Only differences to the default cds config, they are merged together.
*
* @see defaultCdsConfigFactory
* @see CdsModule.forRoot
*/
const cds2: CdsConfig = {
cds: {
baseSite: [
Expand Down

0 comments on commit 81496af

Please sign in to comment.