Skip to content

Commit

Permalink
fixed weird link issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnnsrs committed Oct 30, 2023
1 parent 93f95b8 commit 54386a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/screens/wizard/forms/CheckDocker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { useCommunication } from "../../../communication/communication-context";
import { Alert } from "../../../components/ui/alert";
import { Button } from "../../../components/ui/button";
import { StepProps } from "../types";
import {open} from "@tauri-apps/api/shell"

export const CheckDocker: React.FC<StepProps> = (props) => {
const { call, status, interfaceStatus } = useCommunication();
Expand Down Expand Up @@ -60,9 +61,9 @@ export const CheckDocker: React.FC<StepProps> = (props) => {
Follow the instructions in the documentation to get you started.
<div className="mt-6">
<Button>
<a href="https://arkitekt.live/docs/installation">
<div onClick={() => open("https://arkitekt.live/docs/installation")} >
Open Documentation
</a>
</div>
</Button>
</div>
</div>
Expand Down

0 comments on commit 54386a3

Please sign in to comment.