Skip to content

Commit c7034c7

Browse files
committed
fix play button, scheduled tasks modal
1 parent 5be4c88 commit c7034c7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

apps/sim/app/workspace/[workspaceId]/scheduled-tasks/scheduled-tasks.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,11 @@ export function ScheduledTasks() {
249249
>
250250
Cancel
251251
</Button>
252-
<Button variant='default' onClick={handleDelete} disabled={deleteSchedule.isPending}>
252+
<Button
253+
variant='destructive'
254+
onClick={handleDelete}
255+
disabled={deleteSchedule.isPending}
256+
>
253257
{deleteSchedule.isPending ? 'Deleting...' : 'Delete'}
254258
</Button>
255259
</ModalFooter>

apps/sim/components/emcn/icons/play.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function PlayOutline(props: SVGProps<SVGSVGElement>) {
4040
xmlns='http://www.w3.org/2000/svg'
4141
{...props}
4242
>
43-
<path d='M6.25 3.9C6.25 3.408 6.799 3.114 7.209 3.399L15.709 9.299C16.063 9.545 16.063 10.069 15.709 10.315L7.209 16.215C6.799 16.5 6.25 16.206 6.25 15.714V3.9Z' />
43+
<path d='M7.5 3.5C7.5 2.672 8.452 2.18 9.128 2.66L18.128 9.16C18.72 9.58 18.72 10.46 18.128 10.88L9.128 17.38C8.452 17.86 7.5 17.368 7.5 16.54V3.5Z' />
4444
</svg>
4545
)
4646
}

0 commit comments

Comments
 (0)