From 1467ef262407cc323505d26bab8d6f9899d83e8f Mon Sep 17 00:00:00 2001 From: Sejin Lee Date: Thu, 4 Jan 2024 23:58:52 +0900 Subject: [PATCH] =?UTF-8?q?[Fix]=20#348=20-=20=EC=B0=8C=EB=A5=B4=EA=B8=B0?= =?UTF-8?q?=20=EC=95=8C=EB=A6=BC=20=EB=A6=AC=EC=8A=A4=ED=8A=B8=20=EB=B7=B0?= =?UTF-8?q?=EA=B0=80=20=EB=A1=9C=EB=93=9C=20=EB=90=98=EB=A9=B4=EC=84=9C=20?= =?UTF-8?q?API=EA=B0=80=202=EB=B2=88=20=ED=98=B8=EC=B6=9C=EB=90=98?= =?UTF-8?q?=EB=8A=94=20=EC=9D=B4=EC=8A=88=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PokeNotificationScene/PokeNotificationViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeNotificationScene/PokeNotificationViewController.swift b/SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeNotificationScene/PokeNotificationViewController.swift index 2a49097a..6cf4ecbb 100644 --- a/SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeNotificationScene/PokeNotificationViewController.swift +++ b/SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeNotificationScene/PokeNotificationViewController.swift @@ -140,7 +140,7 @@ extension PokeNotificationViewController { .publisher(for: \.contentOffset) .map { [weak self] offset in guard - !offset.y.isZero, + offset.y > 0, let tableView = self?.tableView, tableView.contentOffset.y >= tableView.contentSize.height - tableView.frame.size.height else { return false }