fix: adjust upload limits to 20MB profile, 30MB portfolio

This commit is contained in:
2026-07-10 12:25:25 +01:00
parent 9ea929901a
commit 0c91482aac
6 changed files with 5 additions and 17 deletions
@@ -22,8 +22,6 @@
// Move content to marker element when ready
// eslint-disable-next-line svelte/no-dom-manipulating
$effect(() => {
const element = markerCtx.getElement();
const ready = markerCtx.isReady();
@@ -38,6 +36,7 @@
// Move content back on cleanup
movedContent.forEach((child) => {
if (wrapperElement && child.parentNode === element) {
// eslint-disable-next-line svelte/no-dom-manipulating
wrapperElement.appendChild(child);
}
});
@@ -43,8 +43,6 @@
// Create popup when marker is ready
// eslint-disable-next-line svelte/no-dom-manipulating
$effect(() => {
const marker = markerCtx.getMarker();
const ready = markerCtx.isReady();