Skip to content

Commit

Permalink
[chore] 닉네임 처리 진해중
Browse files Browse the repository at this point in the history
  • Loading branch information
jiwon2724 committed Aug 28, 2024
1 parent 5c78e73 commit 2ab2318
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package pokitmons.pokit

import android.content.Context
import android.util.Log
import androidx.compose.runtime.MutableState
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateListOf
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package pokitmons.pokit.model
data class DuplicateNicknameState(
val nickname: String = "",
val isDuplicate: Boolean = false,
val isRegex: Boolean = false
val isRegex: Boolean = false,
)
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ fun InputNicknameScreen(
Log.d("!! : ", "else call")
checkDuplicateNickname(text)
} else {

}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.material3.Icon
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
Expand Down

0 comments on commit 2ab2318

Please sign in to comment.