Change TBD's to also be TODO's.

This commit is contained in:
Hyperling 2025-01-09 15:04:21 -07:00
parent 7b1c0db0cc
commit 0e7de44a47
3 changed files with 7 additions and 3 deletions

View File

@ -42,7 +42,7 @@ fun ExpenseDialogAdd(
}, },
keyboardOptions = KeyboardOptions(capitalization = KeyboardCapitalization.Words) keyboardOptions = KeyboardOptions(capitalization = KeyboardCapitalization.Words)
) )
// TBD: Had to make this a String, can we turn it back to a Double somehow? // TBD / TODO: Had to make this a String, can we turn it back to a Double somehow?
TextField( TextField(
value = state.cost, value = state.cost,
onValueChange = { onValueChange = {

View File

@ -52,7 +52,7 @@ class ExpenseViewModel (
if (name.isBlank() if (name.isBlank()
|| cost.isBlank() || cost.isBlank()
//|| rate.isBlank() # TBD, enable this once Rate is working. //|| rate.isBlank() # TBD / TODO: Enable this once Rate is working.
) { ) {
return return
} }

View File

@ -1,5 +1,8 @@
package com.hyperling.expensetracker package com.hyperling.expensetracker
/* TBD / TODO: This file exists temporarily for viewing what the old version was doing.
// TBD / TODO: Remove this file.
import android.content.Context import android.content.Context
import android.content.Intent import android.content.Intent
import android.os.Bundle import android.os.Bundle
@ -137,4 +140,5 @@ fun MainPreview() {
ExpenseTrackerTheme { ExpenseTrackerTheme {
Main() Main()
} }
} }
*/