Skip to content

Commit

Permalink
update display mode default to advanced
Browse files Browse the repository at this point in the history
  • Loading branch information
vorujack committed Mar 23, 2024
1 parent c56310e commit 8ef60bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/db/entities/Config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';

export enum ConfigType {
DisplayMode = 'DISPLAY_MODE',
DisplayMode = 'DISPLAY_DETAIL',
Currency = 'CURRENCY',
ActiveWallet = 'ACTIVE_WALLET',
}
Expand Down
2 changes: 1 addition & 1 deletion src/store/reducer/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const configInitialState: ConfigStateType = {
currency: '',
priceLastWeek: 0,
price: 0,
display: 'simple',
display: 'advanced',
loaded: false,
multiSigLoadedTime: Date.now(),
};
Expand Down

0 comments on commit 8ef60bf

Please sign in to comment.