be consistent

This commit is contained in:
2026-07-03 20:35:45 -04:00
parent 1ff96ee9c8
commit 9158648f3f
15 changed files with 80 additions and 80 deletions
+4 -4
View File
@@ -7,8 +7,8 @@
*/
export interface Device {
id?: string;
device_name?: string;
created_at?: string;
last_synced?: string;
id: string;
device_name: string;
created_at: string;
last_synced: string;
}