Add key prop to ViewModal to force remount when editing different views, ensuring useState initializers run again to load the saved access control settings from the view's settings object.
@@ -997,6 +997,7 @@ function Views() {
{/* Modals */}
{(showCreateModal || editingView) && (
<ViewModal
+ key={editingView?.id || 'new'}
view={editingView}
collections={collections}
workspaceId={currentWorkspace.id}