diff --git a/src/components/PostEditor/PostContent.tsx b/src/components/PostEditor/PostContent.tsx index 031aa8b..089061e 100644 --- a/src/components/PostEditor/PostContent.tsx +++ b/src/components/PostEditor/PostContent.tsx @@ -82,6 +82,7 @@ export default function PostContent({ relays: [] } ) + setSpecifiedRelayUrls(cachedSettings.specifiedRelayUrls) setAddClientTag(cachedSettings.addClientTag ?? false) } return @@ -92,6 +93,7 @@ export default function PostContent({ isNsfw, isPoll, pollCreateData, + specifiedRelayUrls, addClientTag } ) diff --git a/src/services/post-editor-cache.service.ts b/src/services/post-editor-cache.service.ts index f2ac915..5604d1b 100644 --- a/src/services/post-editor-cache.service.ts +++ b/src/services/post-editor-cache.service.ts @@ -6,6 +6,7 @@ type TPostSettings = { isNsfw?: boolean isPoll?: boolean pollCreateData?: TPollCreateData + specifiedRelayUrls?: string[] addClientTag?: boolean }