Skip to content
This repository has been archived by the owner on Feb 22, 2025. It is now read-only.

Commit

Permalink
fix: 🐛 Undefined data
Browse files Browse the repository at this point in the history
  • Loading branch information
Nudelsuppe42 committed Feb 3, 2024
1 parent 9a8e7e5 commit e2b3885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/admin/cron.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Settings = ({ data: tempData }: any) => {
<Table.Th>Cron String</Table.Th>
</Table.Thead>
<Table.Tbody>
{data.map((job: any) => (
{data?.map((job: any) => (
<Table.Tr key={job.id}>
<Table.Td>{job.id}</Table.Td>
<Table.Td>
Expand Down

0 comments on commit e2b3885

Please sign in to comment.