Skip to content

Commit

Permalink
Adjust dialog timing (#5502)
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey authored Sep 26, 2024
1 parent 5a14216 commit 960f445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dialogs/nuxs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const queuedNuxs: {
id: Nux.NeueTypography,
enabled(props) {
if (props.currentProfile.createdAt) {
if (new Date(props.currentProfile.createdAt) < new Date('2024-09-25')) {
if (new Date(props.currentProfile.createdAt) < new Date('2024-10-01')) {
return true
}
}
Expand Down

0 comments on commit 960f445

Please sign in to comment.