diff --git a/core/base/src/main/java/com/sadellie/unitto/core/base/TopLevelDestinations.kt b/core/base/src/main/java/com/sadellie/unitto/core/base/TopLevelDestinations.kt index 61ab4f31..0f5bf3bd 100644 --- a/core/base/src/main/java/com/sadellie/unitto/core/base/TopLevelDestinations.kt +++ b/core/base/src/main/java/com/sadellie/unitto/core/base/TopLevelDestinations.kt @@ -36,7 +36,7 @@ sealed class TopLevelDestinations( object DateDifference : TopLevelDestinations( route = "date_difference_route", - name = R.string.date_difference + name = R.string.date_calculator ) object TimeZone : TopLevelDestinations( @@ -54,6 +54,6 @@ val TOP_LEVEL_DESTINATIONS: Map by lazy { mapOf( TopLevelDestinations.Calculator to R.string.calculator, TopLevelDestinations.Converter to R.string.unit_converter, - TopLevelDestinations.DateDifference to R.string.date_difference, + TopLevelDestinations.DateDifference to R.string.date_calculator, ) }