diff options
author | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-16 19:04:47 -0700 |
---|---|---|
committer | Ansh Nanda <anshnanda10@gmail.com> | 2023-05-16 19:04:47 -0700 |
commit | 59c1b545fad5883487777f0a36ee21f3791aa268 (patch) | |
tree | 1f71042c06f3a5fde3df0abee279aa7a7fc67c66 /src/lib/routes/types.ts | |
parent | ff3cc3b84d74453a1f5c7443c492d5d894e53b2f (diff) | |
download | voidsky-59c1b545fad5883487777f0a36ee21f3791aa268.tar.zst |
fix routing on web
Diffstat (limited to 'src/lib/routes/types.ts')
-rw-r--r-- | src/lib/routes/types.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 12ff27070..b1dcbb999 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -22,7 +22,7 @@ export type CommonNavigatorParams = { AppPasswords: undefined SavedFeeds: undefined PinnedFeeds: undefined - CustomFeed: {name?: string; rkey: string} + CustomFeed: {name: string; rkey: string; displayName?: string} MutedAccounts: undefined BlockedAccounts: undefined } |