diff --git a/src/utils/format.ts b/src/utils/format.ts
index abc1234..def5678 100644
@@ -1,10 +1,10 @@
-export function formatDate(date: Date): string{
- const year = date.getFullYear()
- const month = String(date.getMonth() + 1).padStart(2, '0')
- const day = String(date.getDate()).padStart(2, '0')
- return `${year}-${month}-${day}`
+export function formatDate(date: Date): string {
+ const year = date.getFullYear();
+ const month = String(date.getMonth() + 1).padStart(2, "0");
+ const day = String(date.getDate()).padStart(2, "0");
+ return `${year}-${month}-${day}`;
}
-export function formatTime(date: Date): string{
- return date.toISOString().slice(11, 19)
+export function formatTime(date: Date): string {
+ return date.toISOString().slice(11, 19);
}