Replace message-backups TODO with backups.

This commit is contained in:
Alex Hart
2024-11-04 09:18:57 -04:00
parent 4d39679144
commit 19c3075bc6
8 changed files with 22 additions and 22 deletions

View File

@@ -16,10 +16,10 @@ object GooglePlayBillingDependencies : BillingDependencies {
override val context: Context get() = AppDependencies.application
override suspend fun getProductId(): String {
return "backup" // TODO [message-backups] This really shouldn't be hardcoded into the app.
return "backup" // TODO [backups] This really shouldn't be hardcoded into the app.
}
override suspend fun getBasePlanId(): String {
return "monthly" // TODO [message-backups] This really shouldn't be hardcoded into the app.
return "monthly" // TODO [backups] This really shouldn't be hardcoded into the app.
}
}