Skip to content

Commit 9883324

Browse files
fix: using save icon instead of download icon
1 parent 27166c2 commit 9883324

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/modules/jobs/pages/JobCreation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState, useRef } from "react"
22
import { useNavigate, Link, useLocation } from "react-router-dom"
33
import { message } from "antd"
4-
import { ArrowLeft, ArrowRight, DownloadSimple } from "@phosphor-icons/react"
4+
import { ArrowLeft, ArrowRight, FloppyDisk } from "@phosphor-icons/react"
55
import { v4 as uuidv4 } from "uuid"
66

77
import { useAppStore } from "../../../store"
@@ -487,7 +487,7 @@ const JobCreation: React.FC = () => {
487487
onClick={handleSaveJob}
488488
className="flex items-center justify-center gap-2 rounded-md border border-gray-400 px-4 py-1 font-light hover:bg-[#ebebeb]"
489489
>
490-
<DownloadSimple className="size-4" />
490+
<FloppyDisk className="size-4" />
491491
Save Job
492492
</button>
493493
</div>

0 commit comments

Comments
 (0)