created an alert for confirmation during send flow

This commit is contained in:
Beverly Nguyen
2024-02-13 17:48:06 -08:00
parent c74575a0b8
commit c2d7828138
6 changed files with 62 additions and 23 deletions

View File

@@ -98,6 +98,12 @@ def format_datetime_short(date):
)
def format_datetime_short_12h(date):
return "{} at {} {}".format(
format_date_short(date), format_time_12h(date), get_user_preferred_timezone()
)
def format_datetime_short_america(date):
return "{} at {}".format(format_date_numeric_america(date), format_time_12h(date))