Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions frontend/src/app/dialogs/connect-gcp-frame.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { faCheck, faGoogleCloud, faSpinnerThird, Icon } from "@rivet-gg/icons";
import { faCheck, faSquare as faGoogleCloud, faSpinnerThird, Icon } from "@rivet-gg/icons";
import {
useInfiniteQuery,
useMutation,
Expand Down Expand Up @@ -56,7 +56,7 @@ const stepper = defineStepper(
},
);

interface ConnectAwsFrameContentProps extends DialogContentProps {}
interface ConnectAwsFrameContentProps extends DialogContentProps { }

export default function ConnectAwsFrameContent({
onClose,
Expand Down Expand Up @@ -198,10 +198,9 @@ function Step3({ provider = "gcp" }: { provider?: string }) {

const success = chosenDatacenters
.map((dc) =>
queryData?.find((runner) =>
runner.datacenter === dc &&
runner.name === runnerName &&

queryData?.find(
(runner) =>
runner.datacenter === dc && runner.name === runnerName,
),
)
.every((v) => v);
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/app/dialogs/connect-hetzner-frame.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
faCheck,
faGoogleCloud,
faHetzner,
faSquare as faGoogleCloud,
faSquare as faHetzner,
faSpinnerThird,
Icon,
} from "@rivet-gg/icons";
Expand Down Expand Up @@ -62,7 +62,7 @@ const stepper = defineStepper(
},
);

interface ConnectHetznerFrameContentProps extends DialogContentProps {}
interface ConnectHetznerFrameContentProps extends DialogContentProps { }

export default function ConnectHetznerFrameContent({
onClose,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
faAws,
faGoogleCloud,
faHetzner,
faSquare as faGoogleCloud,
faSquare as faHetzner,
faPlus,
faQuestionCircle,
faRailway,
Expand Down
Loading