diff --git a/Logic/ExtraFunctions.ts b/Logic/ExtraFunctions.ts
index 833ce0d9d..1c1c5ff78 100644
--- a/Logic/ExtraFunctions.ts
+++ b/Logic/ExtraFunctions.ts
@@ -445,7 +445,7 @@ class GetParsed implements ExtraFunction {
}
}
-export type ExtraFuncType = typeof ExtraFunctions.types[number]
+export type ExtraFuncType = (typeof ExtraFunctions.types)[number]
export class ExtraFunctions {
static readonly intro = new Combine([
diff --git a/Models/Constants.ts b/Models/Constants.ts
index 9764afe48..610dde3bb 100644
--- a/Models/Constants.ts
+++ b/Models/Constants.ts
@@ -1,7 +1,7 @@
import { Utils } from "../Utils"
import * as meta from "../package.json"
-export type PriviligedLayerType = typeof Constants.priviliged_layers[number]
+export type PriviligedLayerType = (typeof Constants.priviliged_layers)[number]
export default class Constants {
public static vNumber = meta.version
diff --git a/Models/MenuState.ts b/Models/MenuState.ts
index c946402af..3b6aa600a 100644
--- a/Models/MenuState.ts
+++ b/Models/MenuState.ts
@@ -4,8 +4,8 @@ import UserRelatedState from "../Logic/State/UserRelatedState"
import { Utils } from "../Utils"
import { LocalStorageSource } from "../Logic/Web/LocalStorageSource"
-export type ThemeViewTabStates = typeof MenuState._themeviewTabs[number]
-export type MenuViewTabStates = typeof MenuState._menuviewTabs[number]
+export type ThemeViewTabStates = (typeof MenuState._themeviewTabs)[number]
+export type MenuViewTabStates = (typeof MenuState._menuviewTabs)[number]
/**
* Indicates if a menu is open, and if so, which tab is selected;
diff --git a/Models/ThemeConfig/LayerConfig.ts b/Models/ThemeConfig/LayerConfig.ts
index 8fc628274..763793784 100644
--- a/Models/ThemeConfig/LayerConfig.ts
+++ b/Models/ThemeConfig/LayerConfig.ts
@@ -66,7 +66,7 @@ export default class LayerConfig extends WithContextLoader {
public readonly filters: FilterConfig[]
public readonly filterIsSameAs: string
public readonly forceLoad: boolean
- public readonly syncSelection: typeof LayerConfig.syncSelectionAllowed[number] // this is a trick to conver a constant array of strings into a type union of these values
+ public readonly syncSelection: (typeof LayerConfig.syncSelectionAllowed)[number] // this is a trick to conver a constant array of strings into a type union of these values
public readonly _needsFullNodeDatabase: boolean
public readonly popupInFloatover
diff --git a/Models/ThemeViewState.ts b/Models/ThemeViewState.ts
index 5d11d98dc..f4d0d7e16 100644
--- a/Models/ThemeViewState.ts
+++ b/Models/ThemeViewState.ts
@@ -458,7 +458,7 @@ export default class ThemeViewState implements SpecialVisualizationState {
* Add the special layers to the map
*/
private drawSpecialLayers() {
- type AddedByDefaultTypes = typeof Constants.added_by_default[number]
+ type AddedByDefaultTypes = (typeof Constants.added_by_default)[number]
const empty = []
/**
* A listing which maps the layerId onto the featureSource
diff --git a/UI/Base/BackButton.svelte b/UI/Base/BackButton.svelte
index 4b005e5d0..2b11394e1 100644
--- a/UI/Base/BackButton.svelte
+++ b/UI/Base/BackButton.svelte
@@ -15,6 +15,6 @@
on:click={() => dispatch("click")}
options={{ extraClasses: clss + " flex items-center" }}
>
-
+
diff --git a/UI/Base/DragInvitation.svelte b/UI/Base/DragInvitation.svelte
index fda880f07..623c77d48 100644
--- a/UI/Base/DragInvitation.svelte
+++ b/UI/Base/DragInvitation.svelte
@@ -27,7 +27,7 @@
}
-