Skip to content

Commit f20fd84

Browse files
committed
fix: 한 줄에 127자 이상 되는 lint 경고 제거
1 parent cb798ac commit f20fd84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

DevLog/Presentation/ViewModel/HomeViewModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010
final class HomeViewModel: Store {
1111
struct State {
1212
// UI
13-
var todoKindPreferences: [TodoKindPreference] = TodoKind.allCases.map { TodoKindPreference(kind: $0, isVisible: true) }
13+
var todoKindPreferences = TodoKind.allCases.map { TodoKindPreference(kind: $0, isVisible: true) }
1414
var pinnedTodos: [Todo] = []
1515

1616
// User Input

0 commit comments

Comments
 (0)