File tree 1 file changed +2
-7
lines changed
pages/side-panel/src/components
1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import {
16
16
GetFormattedMemoProps ,
17
17
getSupabaseClient ,
18
18
responseRefetchTheMemoList ,
19
- responseUpdateSidePanel ,
20
19
} from '@extension/shared/utils/extension' ;
21
20
import { cn , Toast } from '@extension/ui' ;
22
21
import withAuthentication from '@src/hoc/withAuthentication' ;
@@ -55,19 +54,15 @@ function MemoForm() {
55
54
} ) ;
56
55
57
56
const saveMemo = async ( { memo, category } : GetFormattedMemoProps ) => {
57
+ if ( memo === '' ) return ;
58
+
58
59
const currentMemo = memoList ?. data ?. find ( memo => memo . url === formatUrl ( tab . url ) ) ;
59
60
const formattedMemo = await getFormattedMemo ( { category, memo } ) ;
60
61
61
62
if ( currentMemo ) mutateMemoPatch ( { ...formattedMemo , id : currentMemo . id } ) ;
62
63
else mutateMemoPost ( formattedMemo ) ;
63
64
} ;
64
65
65
- useDidMount ( ( ) =>
66
- responseUpdateSidePanel ( ( ) => {
67
- setIsSaved ( true ) ;
68
- abortThrottle ( ) ;
69
- } ) ,
70
- ) ;
71
66
useDidMount ( ( ) => {
72
67
responseRefetchTheMemoList ( refetchMemoList ) ;
73
68
} ) ;
You can’t perform that action at this time.
0 commit comments