diff --git a/packages/client/src/components/post-form-attaches.vue b/packages/client/src/components/post-form-attaches.vue index 5e46e90a2..dae7921ab 100644 --- a/packages/client/src/components/post-form-attaches.vue +++ b/packages/client/src/components/post-form-attaches.vue @@ -56,7 +56,7 @@ function detachMedia(id: string): void { function toggleSensitive(file: DriveFile): void { os.api('drive/files/update', { fileId: file.id, - isSensitive: !file.isSensitive,, + isSensitive: !file.isSensitive, }).then(() => { emit('changeSensitive', file, !file.isSensitive); });