diff --git a/packages/sanity/src/structure/panes/document/documentPanel/documentViews/FormView.tsx b/packages/sanity/src/structure/panes/document/documentPanel/documentViews/FormView.tsx index 776ad802e0e5..1b9c11e62147 100644 --- a/packages/sanity/src/structure/panes/document/documentPanel/documentViews/FormView.tsx +++ b/packages/sanity/src/structure/panes/document/documentPanel/documentViews/FormView.tsx @@ -69,14 +69,14 @@ export const FormView = forwardRef(function FormV const conditionalToastParams = useMemo( () => ({ - id: `sync-lock-${documentId}`, + id: `sync-lock`, status: 'warning' as const, enabled: isLocked, title: t('document-view.form-view.sync-lock-toast.title'), description: t('document-view.form-view.sync-lock-toast.description'), closable: true, }), - [documentId, isLocked, t], + [isLocked, t], ) useConditionalToast(conditionalToastParams)