Compare commits

..

1 Commits

Author SHA1 Message Date
2245857128 fix 2025-11-29 08:44:42 +08:00

View File

@@ -108,7 +108,9 @@ export const useUserWallStore = create<UserWallStore>((set, get) => ({
const res = await query.post({
path: 'mark',
key: 'get',
payload: {
id,
},
});
return res;
},
@@ -116,7 +118,9 @@ export const useUserWallStore = create<UserWallStore>((set, get) => ({
const res = await query.post({
path: 'mark',
key: 'delete',
payload: {
id,
}
});
return res;
},