Skip to content

Commit 3e01ba3

Browse files
committed
Lint error
1 parent 462ff87 commit 3e01ba3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/src/API/coffeeChatAPI.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export const archiveCoffeeChats = async (user: IdolMember): Promise<void> => {
151151
);
152152
}
153153

154-
await coffeeChatDao.archiveCoffeeChats();
154+
await CoffeeChatDao.archiveCoffeeChats();
155155
};
156156

157157
/**
@@ -167,7 +167,7 @@ export const unarchiveCoffeeChats = async (user: IdolMember): Promise<void> => {
167167
);
168168
}
169169

170-
await coffeeChatDao.unarchiveCoffeeChats();
170+
await CoffeeChatDao.unarchiveCoffeeChats();
171171
};
172172

173173
/**

0 commit comments

Comments
 (0)