Skip to content

Commit

Permalink
Fixing lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Tynarus committed Dec 6, 2020
1 parent 36b2e1a commit 6f44f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/quests/quest-journal-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const action: buttonAction = (details) => {
(playerQuest) => playerQuest.questId === quest.questTabId
);

let playerStage = "NOT_STARTED";
let playerStage = 'NOT_STARTED';
if (playerQuest && playerQuest.stage) {
playerStage = playerQuest.stage;
}
Expand Down

0 comments on commit 6f44f9e

Please sign in to comment.