Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
stephlow committed Oct 18, 2024
1 parent 1c50d44 commit 43bb6ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
} from "@fiberplane/fpx-types";
import { useHandler } from "@fiberplane/hooks";
import { useEffect, useState } from "react";
import { z } from "zod";
import { RuntimeContext, type RuntimeProviderProps } from "../RuntimeProvider";
import { WorkspaceOpenError } from "./WorkspaceOpenError";
import { WorkspaceSelector } from "./WorkspaceSelector";
Expand All @@ -15,7 +16,6 @@ import {
openWorkspace,
showOpenWorkspaceDialog,
} from "./utils";
import { z } from "zod";

export function TauriRuntime({ children }: RuntimeProviderProps) {
const [workspace, setWorkspace] = useState<Workspace | null>(null);
Expand Down

0 comments on commit 43bb6ad

Please sign in to comment.