+
+
+
+
))}
{results.data.length === 0 && (
diff --git a/apps/web/src/components/(dashboard)/table/actions-component.tsx b/apps/web/src/components/(dashboard)/table/actions-component.tsx
new file mode 100644
index 000000000..299a37fda
--- /dev/null
+++ b/apps/web/src/components/(dashboard)/table/actions-component.tsx
@@ -0,0 +1,33 @@
+'use client';
+
+import React from 'react';
+
+import { Download, Edit, Trash } from 'lucide-react';
+
+export function ActionButtons() {
+ return (
+
+ {
+ console.log('Edit Button');
+ }}
+ />
+ {
+ console.log('Download Button');
+ }}
+ />
+ {
+ console.log('Delete Button');
+ }}
+ />
+
+ );
+}
diff --git a/apps/web/src/components/formatter/locale-date.tsx b/apps/web/src/components/formatter/locale-date.tsx
index 837c6aa38..4196ed691 100644
--- a/apps/web/src/components/formatter/locale-date.tsx
+++ b/apps/web/src/components/formatter/locale-date.tsx
@@ -10,7 +10,7 @@ export const LocaleDate = ({ className, date, ...props }: LocaleDateProps) => {
const [localeDate, setLocaleDate] = useState(() => new Date(date).toISOString());
useEffect(() => {
- setLocaleDate(new Date(date).toLocaleString());
+ setLocaleDate(new Date(date).toLocaleDateString());
}, [date]);
return (