Skip to content

Commit 0634348

Browse files
authored
Fix: 페이지 이동 시 스로틀 안되는 이슈 해결 (#90)
* fix: 페이지 업데이트 시 사이드패널 업데이트 제거 * chore: 메모가 비었다면, 저장을 하지 않는다
1 parent 0f4cb20 commit 0634348

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

pages/side-panel/src/components/MemoForm.tsx

+2-7
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import {
1616
GetFormattedMemoProps,
1717
getSupabaseClient,
1818
responseRefetchTheMemoList,
19-
responseUpdateSidePanel,
2019
} from '@extension/shared/utils/extension';
2120
import { cn, Toast } from '@extension/ui';
2221
import withAuthentication from '@src/hoc/withAuthentication';
@@ -55,19 +54,15 @@ function MemoForm() {
5554
});
5655

5756
const saveMemo = async ({ memo, category }: GetFormattedMemoProps) => {
57+
if (memo === '') return;
58+
5859
const currentMemo = memoList?.data?.find(memo => memo.url === formatUrl(tab.url));
5960
const formattedMemo = await getFormattedMemo({ category, memo });
6061

6162
if (currentMemo) mutateMemoPatch({ ...formattedMemo, id: currentMemo.id });
6263
else mutateMemoPost(formattedMemo);
6364
};
6465

65-
useDidMount(() =>
66-
responseUpdateSidePanel(() => {
67-
setIsSaved(true);
68-
abortThrottle();
69-
}),
70-
);
7166
useDidMount(() => {
7267
responseRefetchTheMemoList(refetchMemoList);
7368
});

0 commit comments

Comments
 (0)