feat: Add settings page to configure account and preferences

This commit is contained in:
Jesse Wierzbinski 2024-06-18 20:16:28 -10:00
parent 633ff184e3
commit 1691daa000
No known key found for this signature in database
21 changed files with 687 additions and 183 deletions

View file

@ -174,6 +174,7 @@ useListen("composer:send-edit", (note) => {
const client = useClient();
const identity = useCurrentIdentity();
const settings = useSettings();
const {
loaded,
note: outputtedNote,
@ -185,7 +186,7 @@ const {
reblog,
isReply,
reblogDisplayName,
} = useNoteData(noteRef, client);
} = useNoteData(noteRef, client, settings);
const openBlank = (url: string) => window.open(url, "_blank");