diff --git a/readme.md b/readme.md
index e5cfc7e96..87e6fc2e9 100644
--- a/readme.md
+++ b/readme.md
@@ -124,10 +124,6 @@ Desktop notifications can be turned on in `Preferences`.
You can toggle whether Caprine stays on top of other windows in the `Window`/`View` menu or with Command/Control Shift t.
-### Image paste confirmation
-
-Confirmation before sending images from the clipboard, to prevent accidental copy-pastes.
-
### Work Chat support
Support for Work Chat: Messenger for [Workplace](https://www.facebook.com/workplace). You can switch to it in the `Caprine`/`File` menu.
diff --git a/source/config.ts b/source/config.ts
index 5a82b20d9..a7e4b5c90 100644
--- a/source/config.ts
+++ b/source/config.ts
@@ -29,7 +29,6 @@ type StoreType = {
deliveryReceipt: boolean;
};
emojiStyle: 'native' | 'facebook-3-0' | 'messenger-1-0' | 'facebook-2-2';
- confirmImagePaste: boolean;
useWorkChat: boolean;
sidebarHidden: boolean;
autoHideMenuBar: boolean;
@@ -150,10 +149,6 @@ const schema: {[Key in keyof StoreType]: Store.Schema} = {
enum: ['native', 'facebook-3-0', 'messenger-1-0', 'facebook-2-2'],
default: 'facebook-3-0'
},
- confirmImagePaste: {
- type: 'boolean',
- default: true
- },
useWorkChat: {
type: 'boolean',
default: false