Skip to content

Commit

Permalink
fix(auth page): Corrected height display issue on auth page
Browse files Browse the repository at this point in the history
  • Loading branch information
AricRedemption committed Mar 29, 2024
1 parent 0318e5e commit 8b3e27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const DERIVE_MAX_DEPTH = 1000
const IS_WINDOWS = /windows/i.test(navigator.userAgent)

export const NOTIFICATION_WIDTH = IS_WINDOWS ? 366 : 360
export const NOTIFICATION_HEIGHT = IS_WINDOWS ? 640 : 600
export const NOTIFICATION_HEIGHT = IS_WINDOWS ? 640 : 630

export const DEBUG = false
export const IS_DEV = process.env.NODE_ENV === 'development'

0 comments on commit 8b3e27f

Please sign in to comment.