Prevent iPad dismiss when tapping outside (#737)

The user may tap outside accidentally while editing a profile, thus
losing all the edits. Avoid that.

Fixes #734
This commit is contained in:
Davide 2024-10-16 08:56:58 +02:00 committed by GitHub
parent acf066571a
commit 3de75e476b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ struct AppModalCoordinator: View {
contentView contentView
.toolbar(content: toolbarContent) .toolbar(content: toolbarContent)
} }
.themeModal(item: $modalRoute, isRoot: true, content: modalDestination) .themeModal(item: $modalRoute, isRoot: true, isInteractive: false, content: modalDestination)
} }
} }