From 952c2d4a5c133b4fbf79cc51a663c265aa299383 Mon Sep 17 00:00:00 2001 From: Martin Berka Date: Mon, 12 Jun 2023 20:08:50 +0200 Subject: [PATCH] =?UTF-8?q?Odstran=C4=9Bn=C3=AD=20p=C5=99ebyte=C4=8Dn?= =?UTF-8?q?=C3=A9ho=20k=C3=B3du?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/src/chefie.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/src/chefie.ts b/server/src/chefie.ts index 8001c0b..059976e 100644 --- a/server/src/chefie.ts +++ b/server/src/chefie.ts @@ -22,9 +22,6 @@ type Pizza = { const baseUrl = 'https://www.pizzachefie.cz'; const pizzyUrl = `${baseUrl}/pizzy.html?pobocka=plzen`; -// URL na Food API - získání jídelních lístků restaurací -const foodUrl = process.env.FOOD_API_URL || 'http://localhost:3002'; - const buildPizzaUrl = (pizzaUrl: string) => { return `${baseUrl}/${pizzaUrl}`; }