Skip to content

Commit f11319d

Browse files
committed
fix: 기존 경로와 다른 값이 들어가는 현상 해결
1 parent 3110fb3 commit f11319d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DevLog/Infra/Common/FirestorePath.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ enum FirestorePath {
1010
case users
1111
case userData
1212
case counters
13-
case todos
13+
case todoLists
1414
case notifications
1515
case webPages
1616
}
@@ -40,7 +40,7 @@ enum FirestorePath {
4040
}
4141

4242
static func todos(_ uid: String) -> String {
43-
"\(user(uid))/\(Collection.todos.rawValue)"
43+
"\(user(uid))/\(Collection.todoLists.rawValue)"
4444
}
4545

4646
static func todo(_ uid: String, todoId: String) -> String {

0 commit comments

Comments
 (0)