This commit is contained in:
Tomas Dvorak
2025-05-28 23:08:39 +02:00
parent 913f4c93eb
commit 1ba3b1d446
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1722,7 +1722,7 @@ function setupDraggableImage() {
} }
} }
// Template configurations - 6 templates only // Template configurations - 6 main presets
const templateConfigs = { const templateConfigs = {
'default': { 'default': {
name: 'Výchozí', name: 'Výchozí',
+1 -1
View File
@@ -19,7 +19,7 @@
// Load and display banner // Load and display banner
async function loadBanner() { async function loadBanner() {
try { try {
const response = await fetch('/api/banner.json'); const response = await fetch('/api/banner');
if (!response.ok) return; if (!response.ok) return;
const banner = await response.json(); const banner = await response.json();