Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5c9f902

Browse files
committedMar 13, 2025
remove old eslint disable
1 parent 9c9481e commit 5c9f902

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎website/client/src/components/appFooter.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -858,8 +858,8 @@ import buyGemsModal from './payments/buyGemsModal.vue';
858858
import reportBug from '@/mixins/reportBug.js';
859859
import { worldStateMixin } from '@/mixins/worldState';
860860
861-
const DEBUG_ENABLED = import.meta.env.DEBUG_ENABLED === 'true'; // eslint-disable-line no-process-env
862-
const TIME_TRAVEL_ENABLED = import.meta.env.TIME_TRAVEL_ENABLED === 'true'; // eslint-disable-line no-process-env
861+
const DEBUG_ENABLED = import.meta.env.DEBUG_ENABLED === 'true';
862+
const TIME_TRAVEL_ENABLED = import.meta.env.TIME_TRAVEL_ENABLED === 'true';
863863
864864
let sinon;
865865
if (import.meta.env.TIME_TRAVEL_ENABLED === 'true') {

0 commit comments

Comments
 (0)
Please sign in to comment.