mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at verify-intent 11 lines 280 B view raw
1/** 2 * Device data that's specific to the device and does not vary based account 3 */ 4export type Device = { 5 fontScale: '-2' | '-1' | '0' | '1' | '2' 6 fontFamily: 'system' | 'theme' 7 lastNuxDialog: string | undefined 8 geolocation?: { 9 countryCode: string | undefined 10 } 11}