enhancement(lint): Fix lint errors for src/commands/poll.ts

Co-authored-by: NeonGamerBot-QK <saahilattud@gmail.com>
Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
zeon-neon[bot] 2024-12-17 02:46:51 +00:00 committed by GitHub
parent fff129861d
commit de0fef6444
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,7 +95,7 @@ export default class ZeonPoll implements Command {
const [pollId, optionIndex] = action.value.split("_").slice(1);
const userId = body.user.id;
console.log(pollId, action.value, userId, polls)
console.log(pollId, action.value, userId, polls);
if (!polls[pollId]) return;
if (!polls[pollId].allowMultiple && polls[pollId].votes[userId]) {