Skip to content

Commit 959f24e

Browse files
committed
Fix lint
1 parent c5af3c6 commit 959f24e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

injected/src/features/duck-ai-data-clearing.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import ContentFeature from '../content-feature.js';
88
*/
99
export class DuckAiDataClearing extends ContentFeature {
1010
init() {
11-
// eslint-ignore-next-line require-await
1211
this.messaging.subscribe('duckAiClearData', _ => this.clearData());
1312
}
1413

@@ -42,7 +41,7 @@ export class DuckAiDataClearing extends ContentFeature {
4241
window.localStorage.removeItem('savedAIChats');
4342
}
4443

45-
async clearChatImagesStore() {
44+
clearChatImagesStore() {
4645
this.log.info('Clearing `chat-images` object store');
4746

4847
return new Promise((resolve, reject) => {

0 commit comments

Comments
 (0)