diff options
author | Tom Sherman <the.tomsherman@gmail.com> | 2025-02-13 01:11:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-13 01:11:13 +0000 |
commit | d56efe250e8b83930d71793c44e6ba58cdecdaf4 (patch) | |
tree | 8cb6557b76e70c7c6b144f1694be9b1f822deb38 /src/storage | |
parent | db25f95c33121da9d04a02dc2e77929a5d24a5ce (diff) | |
download | voidsky-d56efe250e8b83930d71793c44e6ba58cdecdaf4.tar.zst |
Add dev mode for easy copying of at:// URIs and DIDs (#7723)
* Add dev mode for easy copying at:// URIs and DIDs * Use storage API * Share text instead of URL * Cleanup persisted schema * Change translation msg
Diffstat (limited to 'src/storage')
-rw-r--r-- | src/storage/schema.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/storage/schema.ts b/src/storage/schema.ts index 667b43208..0e9b1985c 100644 --- a/src/storage/schema.ts +++ b/src/storage/schema.ts @@ -9,6 +9,7 @@ export type Device = { countryCode: string | undefined } trendingBetaEnabled: boolean + devMode: boolean } export type Account = { |