do not pass in shareId in websiteEditForm

This commit is contained in:
Francis Cao 2026-02-09 17:48:28 -08:00
parent 9e94addada
commit f92aa025f6

View file

@ -8,7 +8,8 @@ export function WebsiteEditForm({ websiteId, onSave }: { websiteId: string; onSa
const { mutateAsync, error, touch, toast } = useUpdateQuery(`/websites/${websiteId}`); const { mutateAsync, error, touch, toast } = useUpdateQuery(`/websites/${websiteId}`);
const handleSubmit = async (data: any) => { const handleSubmit = async (data: any) => {
await mutateAsync(data, { const { shareId, ...updateData } = data;
await mutateAsync(updateData, {
onSuccess: async () => { onSuccess: async () => {
toast(t(messages.saved)); toast(t(messages.saved));
touch('websites'); touch('websites');