From b3ffde0eabe966dbd60596424d5cd98968e8ee17 Mon Sep 17 00:00:00 2001 From: skidoodle Date: Sat, 2 Apr 2022 23:54:19 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Time.tsx | 7 ------- components/Weather.tsx | 12 ------------ 2 files changed, 19 deletions(-) diff --git a/components/Time.tsx b/components/Time.tsx index d5d8c24..ec9229e 100644 --- a/components/Time.tsx +++ b/components/Time.tsx @@ -14,14 +14,7 @@ const Timer = () => { return(
-<<<<<<< HEAD

{date.toLocaleDateString('en-GB', { dateStyle: 'short' }) + ' • ' + date.toLocaleTimeString('en-GB', { timeStyle: 'medium', hour12: true, timeZone: 'Europe/Budapest'}).toUpperCase()}

-======= -

{date.toLocaleString('en-GB', { - timeZone: 'Europe/Budapest', - hour12: true - }).toUpperCase()}

->>>>>>> ce3c841bfc958c99053e0a03c56b5cbc56dff70f
) } diff --git a/components/Weather.tsx b/components/Weather.tsx index 4c3f7d8..69c25c4 100644 --- a/components/Weather.tsx +++ b/components/Weather.tsx @@ -7,7 +7,6 @@ const Weather = ({data}: {data: any}) => { const { icon: weatherIcon, description: weatherDescription} = data.weather[0] const icons: any = { -<<<<<<< HEAD _01d: , _01n: , _02d: , _02n: , _03d: , _03n: , @@ -17,17 +16,6 @@ const Weather = ({data}: {data: any}) => { _11d: , _11n: , _13d: , _13n: , _50d: , _50n: -======= - _01d: ['fas', 'sun'], _01n: ['fas', 'moon'], - _02d: ['fas', 'cloud-sun'], _02n: ['fas', 'cloud-moon'], - _03d: ['fas', 'cloud'], _03n: ['fas', 'cloud'], - _04d: ['fas', 'clouds'], _04n: ['fas', 'clouds'], - _09d: ['fas', 'cloud-showers-heavy'], _09n: ['fas', 'cloud-showers-heavy'], - _10d: ['fas', 'cloud-showers-heavy'], _10n: ['fas', 'cloud-showers-heavy'], - _11d: ['fas', 'cloud-bolt-sun'], _11n: ['fas', 'cloud-bolt-moon'], - _13d: ['fas', 'snow-flake'], _13n: ['fas', 'snow-flake'], - _50d: ['fas', 'cloud-fog'], _50n: ['fas', 'cloud-fog'] ->>>>>>> ce3c841bfc958c99053e0a03c56b5cbc56dff70f } return (