···430430 style={[
431431 a.text_sm,
432432 a.font_semibold,
433433- ,
434433 a.leading_tight,
435434 lightTheme.atoms.text_contrast_low,
436435 ]}>
···533532 fontWeight: '900',
534533 },
535534 ]}>
536536- Thanks for being an early part of Bluesky.
535535+ <Trans>You're part of the next wave of the internet.</Trans>
537536 </Text>
538537539538 <Text style={[a.leading_snug, a.text_lg, a.pb_xl]}>
540539 <Trans>
541541- We're rebuilding the social internet together. Congratulations,
542542- we're glad you're here.
540540+ Thanks for being part of our first 10 million users. We're glad
541541+ you're here.
543542 </Trans>{' '}
544543 </Text>
545544···554553 a.pt_xl,
555554 ]}>
556555 <Text style={[a.text_md, a.italic, t.atoms.text_contrast_medium]}>
557557- Brag a little!
556556+ <Trans>Brag a little!</Trans>
558557 </Text>
559558560559 <Button
···55 device.set(['lastNuxDialog'], new Date().toISOString())
66}
7788+export function unsnooze() {
99+ device.set(['lastNuxDialog'], undefined)
1010+}
1111+812export function isSnoozed() {
913 const lastNuxDialog = device.get(['lastNuxDialog'])
1014 if (!lastNuxDialog) return false
+1-1
src/storage/schema.ts
···22 * Device data that's specific to the device and does not vary based account
33 */
44export type Device = {
55- lastNuxDialog: string
55+ lastNuxDialog: string | undefined
66}