diff --git a/app/src/main/java/com/starry/greenstash/ui/screens/info/composables/GoalInfoScreen.kt b/app/src/main/java/com/starry/greenstash/ui/screens/info/composables/GoalInfoScreen.kt index 313bd583..34de9ca4 100644 --- a/app/src/main/java/com/starry/greenstash/ui/screens/info/composables/GoalInfoScreen.kt +++ b/app/src/main/java/com/starry/greenstash/ui/screens/info/composables/GoalInfoScreen.kt @@ -341,13 +341,11 @@ fun GoalPriorityCard(goalPriority: GoalPriority, reminders: Boolean) { val (reminderIcon, reminderText) = when (reminders) { true -> Pair( Icons.Filled.NotificationsActive, - //ImageVector.vectorResource(R.drawable.ic_reminder_on), stringResource(id = R.string.info_reminder_status_on) ) false -> Pair( Icons.Filled.NotificationsOff, - // ImageVector.vectorResource(R.drawable.ic_reminder_off), stringResource(id = R.string.info_reminder_status_off) ) }