diff --git a/.gitignore b/.gitignore index bfec3d9..4f35d77 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ built yarn-error.log config.json .yarn -.DS_Store \ No newline at end of file +.DS_Store +.yarnrc +.yarnrc.yml \ No newline at end of file diff --git a/.yarnrc.yml b/.yarnrc.yml deleted file mode 100644 index 8e8345b..0000000 --- a/.yarnrc.yml +++ /dev/null @@ -1,2 +0,0 @@ -yarnPath: .yarn/releases/yarn-1.22.19.cjs -nodeLinker: node-modules \ No newline at end of file diff --git a/src/frontend/pages/apps/misshai.tsx b/src/frontend/pages/apps/misshai.tsx index 9e32cc1..dc51dca 100644 --- a/src/frontend/pages/apps/misshai.tsx +++ b/src/frontend/pages/apps/misshai.tsx @@ -37,6 +37,7 @@ type SettingDraftType = Partial>; type DraftReducer = React.Reducer>; @@ -60,7 +61,7 @@ export const MisshaiPage: React.VFC = () => { remoteFollowersOnly: data?.remoteFollowersOnly ?? false, template: data?.template ?? null, useRanking: data?.useRanking ?? false, - appendHashtag: data?.appendHashtag ?? true, + appendHashtag: data?.appendHashtag ?? true, }); const templateTextarea = useRef(null); @@ -101,7 +102,8 @@ export const MisshaiPage: React.VFC = () => { localOnly: data.localOnly, remoteFollowersOnly: data.remoteFollowersOnly, template: data.template, - useRanking: data.useRanking + useRanking: data.useRanking, + appendHastag: data.appendHashtag }); } }, [data]);