Skip to content

Commit 6394850

Browse files
authored
[#637] regular ui에서 Todo가 삭제 혹은 수정되었을 때 HomeView의 최근 섹션 탭이 깜빡이는 현상을 해결한다 (#656)
fix: Home 최근 수정 섹션 깜빡임 방지
1 parent 4c226f6 commit 6394850

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Application/DevLogPresentation/Sources/Home/Home/HomeView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ struct HomeView: View {
7272

7373
private var recentTodoSection: some View {
7474
Section {
75-
if store.isRecentTodosLoading {
75+
if store.isRecentTodosLoading && store.recentTodos.isEmpty {
7676
LoadingView()
7777
} else if store.recentTodos.isEmpty {
7878
HStack {

0 commit comments

Comments
 (0)