mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: update frontend dependencies
This commit is contained in:
@ -87,7 +87,7 @@ const MemoView: React.FC<Props> = (props: Props) => {
|
||||
id: memo.id,
|
||||
pinned: false,
|
||||
},
|
||||
["pinned"]
|
||||
["pinned"],
|
||||
);
|
||||
} else {
|
||||
await memoStore.updateMemo(
|
||||
@ -95,7 +95,7 @@ const MemoView: React.FC<Props> = (props: Props) => {
|
||||
id: memo.id,
|
||||
pinned: true,
|
||||
},
|
||||
["pinned"]
|
||||
["pinned"],
|
||||
);
|
||||
}
|
||||
} catch (error) {
|
||||
@ -129,7 +129,7 @@ const MemoView: React.FC<Props> = (props: Props) => {
|
||||
id: memo.id,
|
||||
rowStatus: RowStatus.ARCHIVED,
|
||||
},
|
||||
["row_status"]
|
||||
["row_status"],
|
||||
);
|
||||
} catch (error: any) {
|
||||
console.error(error);
|
||||
|
Reference in New Issue
Block a user