Skip to content

Commit

Permalink
Pass routerType config var for future release of conda-store-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
gabalafou committed Oct 3, 2024
1 parent 3959df8 commit b25b638
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/widget/condaStoreWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ interface IJlabAppProps extends IAppProps {
class JlabApp extends App<IJlabAppProps> {
constructor({ settings }: IJlabAppProps) {
super({
pref: settings.composite as IAppProps['pref'],
pref: {
...(settings.composite as IAppProps['pref']),
routerType: 'memory'
},
settings
});

Expand Down

0 comments on commit b25b638

Please sign in to comment.