From 39add616189c5968a6187d24bbbba67f7c2542a1 Mon Sep 17 00:00:00 2001 From: Phillip Thelen Date: Tue, 11 Jun 2024 19:10:36 +0200 Subject: [PATCH] Revert "lint" This reverts commit 544d67e7e5f218d1ee3938afd2a1bc0f2c2dd0aa. --- website/client/src/components/shops/buyModal.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/website/client/src/components/shops/buyModal.vue b/website/client/src/components/shops/buyModal.vue index 4d8b28cd40..9aeece119e 100644 --- a/website/client/src/components/shops/buyModal.vue +++ b/website/client/src/components/shops/buyModal.vue @@ -586,8 +586,8 @@ import reduce from 'lodash/reduce'; import moment from 'moment'; import planGemLimits from '@/../../common/script/libs/planGemLimits'; -import eggs from '@/../../common/script/content/eggs'; -import potions from '@/../../common/script/content/hatching-potions'; +import { drops as dropEggs } from '@/../../common/script/content/eggs'; +import { drops as dropPotions } from '@/../../common/script/content/hatching-potions'; import { avatarEditorUtilities } from '@/mixins/avatarEditUtilities'; import numberInvalid from '@/mixins/numberInvalid'; import spellsMixin from '@/mixins/spells'; @@ -617,8 +617,6 @@ import EquipmentAttributesGrid from '../inventory/equipment/attributesGrid.vue'; import Item from '@/components/inventory/item'; import Avatar from '@/components/avatar'; -const dropEggs = eggs.drops; -const dropPotions = potions.drops; const dropEggKeys = keys(dropEggs); const amountOfDropEggs = size(dropEggs);