Skip to content

Commit 10f7945

Browse files
Update ui.frontend/src/components/ScriptAutomaticList.tsx
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 945765f commit 10f7945

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui.frontend/src/components/ScriptAutomaticList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ const ScriptAutomaticList: React.FC = () => {
122122
{(scripts.list || []).map((script) => {
123123
const scriptStats = scripts.stats.find((stat) => stat.path === script.id)!;
124124
const lastExecution = scriptStats?.lastExecution;
125-
const scriptSchedule = scripts.schedules.find((sched) => sched.path === script.id)!;
125+
const scriptSchedule = scripts.schedules.find((sched) => sched.path === script.id);
126126

127127
return (
128128
<Row key={script.id}>

0 commit comments

Comments
 (0)