Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
boswelja committed Jan 1, 2025
1 parent afe531f commit 1141c5f
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.res.stringResource
import com.imashnake.animite.core.R
import animite.core.generated.resources.Res
import animite.core.generated.resources.coming_soon
import org.jetbrains.compose.resources.stringResource

@Composable
fun ComingSoonScreen(modifier: Modifier = Modifier) {
Expand All @@ -33,7 +34,7 @@ fun ComingSoonScreen(modifier: Modifier = Modifier) {
@Composable
fun ComingSoonMessage(modifier: Modifier = Modifier) {
Text(
text = stringResource(R.string.coming_soon),
text = stringResource(Res.string.coming_soon),
color = MaterialTheme.colorScheme.onSurfaceVariant,
style = MaterialTheme.typography.labelLarge,
modifier = modifier
Expand Down

0 comments on commit 1141c5f

Please sign in to comment.