Skip to content

Commit

Permalink
# Fix : FORTIFIED -> PORT 와인 교체
Browse files Browse the repository at this point in the history
  • Loading branch information
DongChyeon committed Feb 4, 2024
1 parent f2616f4 commit be4f43c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextOverflow
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
import com.teamwiney.core.common.model.WineType.Companion.convertToNoteType
import com.teamwiney.core.design.R
import com.teamwiney.ui.components.CardProperties
import com.teamwiney.ui.components.HeightSpacer
Expand Down Expand Up @@ -89,7 +90,7 @@ fun NoteWineCard(
Color(0xFF4F5144)
)

"PORT" -> CardProperties(
"FORTIFIED" -> CardProperties(
color,
R.drawable.ic_port_wine,
Color(0xFFB09A86),
Expand Down Expand Up @@ -150,7 +151,7 @@ fun NoteWineCard(
horizontalArrangement = Arrangement.spacedBy(5.dp)
) {
Text(
text = wineName,
text = convertToNoteType(wineName),
style = TextStyle(
fontFamily = Chaviera,
fontWeight = FontWeight.Normal,
Expand Down

0 comments on commit be4f43c

Please sign in to comment.