diff --git a/src/components/gameMaster/assetManager/partials/tile/TileDetails.vue b/src/components/gameMaster/assetManager/partials/tile/TileDetails.vue
index 2f73b55..a499ce5 100644
--- a/src/components/gameMaster/assetManager/partials/tile/TileDetails.vue
+++ b/src/components/gameMaster/assetManager/partials/tile/TileDetails.vue
@@ -26,11 +26,11 @@
 import config from '@/application/config'
 import type { Tile } from '@/application/types'
 import ChipsInput from '@/components/forms/ChipsInput.vue'
+import { TileStorage } from '@/storage/storages'
 import { useAssetManagerStore } from '@/stores/assetManagerStore'
 import { useGameStore } from '@/stores/gameStore'
 import { useMapEditorStore } from '@/stores/mapEditorStore'
 import { computed, onBeforeUnmount, onMounted, ref, toRaw, watch } from 'vue'
-import { TileStorage } from '@/storage/storages'
 
 const gameStore = useGameStore()
 const assetManagerStore = useAssetManagerStore()
diff --git a/src/components/gameMaster/mapEditor/partials/TileList.vue b/src/components/gameMaster/mapEditor/partials/TileList.vue
index c2a6370..f7239f5 100644
--- a/src/components/gameMaster/mapEditor/partials/TileList.vue
+++ b/src/components/gameMaster/mapEditor/partials/TileList.vue
@@ -84,10 +84,10 @@
 import config from '@/application/config'
 import type { Tile } from '@/application/types'
 import Modal from '@/components/utilities/Modal.vue'
-import { useMapEditorStore } from '@/stores/mapEditorStore'
-import { computed, onMounted, onUnmounted, ref } from 'vue'
 import { TileStorage } from '@/storage/storages'
+import { useMapEditorStore } from '@/stores/mapEditorStore'
 import { liveQuery } from 'dexie'
+import { computed, onMounted, onUnmounted, ref } from 'vue'
 
 const tileStorage = new TileStorage()
 const mapEditorStore = useMapEditorStore()
@@ -174,7 +174,10 @@ function processTile(tile: Tile) {
 }
 
 function getDominantColor(imageData: ImageData) {
-  let r = 0, g = 0, b = 0, total = 0
+  let r = 0,
+    g = 0,
+    b = 0,
+    total = 0
 
   for (let i = 0; i < imageData.data.length; i += 4) {
     if (imageData.data[i + 3] > 0) {