Skip to content

Commit

Permalink
Cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-va committed Nov 6, 2024
1 parent 3940695 commit d173d98
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion apps/server-asset-sg/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const API_PORT = process.env.PORT || 3333;
process.on('warning', (e) => console.warn(e.stack));

async function bootstrap(): Promise<void> {
// process.setMaxListeners(25);
const app = await NestFactory.create(AppModule, {
logger: new AppLogger(),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,6 @@ export class AssetSearchEffects {
updateArrayParam(params, QUERY_PARAM_MAPPING.geometryCodes, query.geometryCodes);
updateArrayParam(params, QUERY_PARAM_MAPPING.languageItemCodes, query.languageItemCodes);
updateArrayParam(params, QUERY_PARAM_MAPPING.workgroupIds, query.workgroupIds);

console.log('todo nav');

return this.router.navigate([], { queryParams: params });
})
),
Expand Down
1 change: 1 addition & 0 deletions libs/favorites/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './lib/components/favorite-button/favorite-button.component';
export * from './lib/favorites.module';

0 comments on commit d173d98

Please sign in to comment.