From 564106f22230cd5277a54a007a073faf3ac88a90 Mon Sep 17 00:00:00 2001 From: fakerdeft Date: Fri, 31 Jul 2026 17:24:20 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=99=88=20=EC=84=9C=EB=B2=84=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=95=88=EB=82=B4=EB=A5=BC=20=EB=8B=A8?= =?UTF-8?q?=EC=88=9C=ED=99=94=ED=95=98=EA=B3=A0=20=EB=B2=84=EC=A0=84?= =?UTF-8?q?=EC=9D=84=20v0.1.13=EC=9C=BC=EB=A1=9C=20=EA=B0=B1=EC=8B=A0=20-?= =?UTF-8?q?=20=EC=BA=90=EC=8B=9C=20=EB=8D=B0=EC=9D=B4=ED=84=B0=20=EA=B0=B1?= =?UTF-8?q?=EC=8B=A0=20=EC=8B=A4=ED=8C=A8=20=EC=8B=9C=20=ED=91=9C=EC=8B=9C?= =?UTF-8?q?=EB=90=98=EB=8D=98=20=EC=84=9C=EB=B2=84=20=EC=97=B0=EA=B2=B0=20?= =?UTF-8?q?=EA=B2=BD=EA=B3=A0=20=EB=B0=95=EC=8A=A4=20=EC=A0=9C=EA=B1=B0=20?= =?UTF-8?q?-=20=EC=9E=90=EB=8F=99=20=EC=83=88=EB=A1=9C=EA=B3=A0=EC=B9=A8?= =?UTF-8?q?=EA=B3=BC=20=EC=A4=91=EB=B3=B5=EB=90=98=EB=8A=94=20=EC=88=98?= =?UTF-8?q?=EB=8F=99=20=EC=9E=AC=EC=8B=9C=EB=8F=84=20=EB=B2=84=ED=8A=BC=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0=20-=20=EC=B4=88=EA=B8=B0=20=EC=A1=B0?= =?UTF-8?q?=ED=9A=8C=20=EC=8B=A4=ED=8C=A8=20=EC=8B=9C=20=EC=84=9C=EB=B2=84?= =?UTF-8?q?=20=EC=98=A4=EB=A5=98=20=EB=B0=8F=20=EA=B4=80=EB=A6=AC=EC=9E=90?= =?UTF-8?q?=20=EB=AC=B8=EC=9D=98=20=EB=AC=B8=EA=B5=AC=EB=A7=8C=20=ED=91=9C?= =?UTF-8?q?=EC=8B=9C=20-=20=EB=B9=88=20=ED=94=BC=EB=93=9C=20=EC=9D=91?= =?UTF-8?q?=EB=8B=B5=EA=B3=BC=20=EC=84=9C=EB=B2=84=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EC=83=81=ED=83=9C=20=EA=B5=AC=EB=B6=84=20=EC=9C=A0=EC=A7=80=20?= =?UTF-8?q?-=20=ED=94=84=EB=A1=9C=EC=A0=9D=ED=8A=B8=20=EB=B0=8F=20?= =?UTF-8?q?=EC=9E=A0=EA=B8=88=20=ED=8C=8C=EC=9D=BC=20=EB=B2=84=EC=A0=84?= =?UTF-8?q?=EC=9D=84=20v0.1.13=EC=9C=BC=EB=A1=9C=20=EB=8F=99=EA=B8=B0?= =?UTF-8?q?=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/home-screen.tsx | 16 +--------------- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 18 deletions(-) diff --git a/components/home-screen.tsx b/components/home-screen.tsx index 9160420..56822ad 100644 --- a/components/home-screen.tsx +++ b/components/home-screen.tsx @@ -1,7 +1,6 @@ "use client"; import { useInfiniteQuery, useQuery } from "@tanstack/react-query"; -import { CloudOff, RefreshCw } from "lucide-react"; import { useEffect, useRef, useState } from "react"; import { AppHeader } from "@/components/app-header"; import { EmptyState } from "@/components/empty-state"; @@ -79,8 +78,7 @@ export function HomeScreen() { onLocationClick={() => setNeedsManualInput(true)} onRefresh={() => void refreshWeather()} /> - {hasWeatherData && hasWeatherError && } - {showLocationError ? : showFullWeatherError ? : <> + {showLocationError ? : showFullWeatherError ?

서버 오류입니다

관리자에게 문의해 주세요

: <> {summary.data ? : isInitialWeatherLoading || (!summary.isError && summary.isPending) @@ -101,15 +99,3 @@ export function HomeScreen() { ); } - -function ConnectionNotice({ onRetry, isRetrying }: { onRetry: () => void; isRetrying: boolean }) { - return ( -
- -

서버 연결이 원활하지 않아 최근 데이터를 표시하고 있어요.

- -
- ); -} diff --git a/package-lock.json b/package-lock.json index c63bfdd..f5f27ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nalssilog-web", - "version": "0.1.12", + "version": "0.1.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "nalssilog-web", - "version": "0.1.12", + "version": "0.1.13", "dependencies": { "@hookform/resolvers": "latest", "@sentry/nextjs": "^10.67.0", diff --git a/package.json b/package.json index 14d981d..739be8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nalssilog-web", - "version": "0.1.12", + "version": "0.1.13", "private": true, "scripts": { "config:init": "git -c submodule.env-config.update=checkout submodule update --init --checkout env-config && git -C env-config switch main && git -C env-config pull --ff-only origin main && npm run config:sync",