diff --git a/roles/home/aichat.nix b/roles/home/aichat.nix index 10618fe..b2f891c 100644 --- a/roles/home/aichat.nix +++ b/roles/home/aichat.nix @@ -61,8 +61,8 @@ roles = '' @@ -5,7 +5,7 @@ export function formatDate(date) { const month = String(date.getMonth() + 1).padStart(2, '0'); const day = String(date.getDate()).padStart(2, '0'); - - return `${year}-${month}-${day}`; - + return `${year}/${month}/${day}`; + - return `$${year}-$${month}-$${day}`; + + return `$${year}/$${month}/$${day}`; } ### OUTPUT: