Skip to content

Commit b2f94f3

Browse files
committed
fix: Navigation routing의 인수로 사용되는 URL 타입의 객체의 직렬화에 URL_SAFE Base64 encoding 이 사용됩니다
1 parent 7fb04a2 commit b2f94f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • domain/model/src/main/java/com/lanpet/domain/model/profile

domain/model/src/main/java/com/lanpet/domain/model/profile/Pet.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import com.lanpet.domain.model.PetCategory
55
data class Pet(
66
val petCategory: PetCategory,
77
val breed: String?,
8-
val feature: List<String> = emptyList(),
8+
val feature: List<String>? = null,
99
val weight: Double?,
1010
val birthDate: String?,
1111
)

0 commit comments

Comments
 (0)