Skip to content

Commit 0d828f3

Browse files
committed
Fixe-da-imports-a
Tool: gitpod/catfood.gitpod.cloud
1 parent e811a1a commit 0d828f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/dashboard/src/dedicated-setup/use-needs-setup.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import { useQuery } from "@tanstack/react-query";
88
import { noPersistence } from "../data/setup";
99
import { installationClient } from "../service/public-api";
1010
import { GetOnboardingStateRequest } from "@gitpod/public-api/lib/gitpod/v1/installation_pb";
11-
import { useInstallationConfiguration } from "../data/installation/default-workspace-image-query";
11+
import { useInstallationConfiguration } from "../data/installation/installation-config-query";
1212

1313
/**
14-
* @description Returns a flage stating if the current installation still needs setup before it can be used. Also returns an isLoading indicator as the check is async
14+
* @description Returns a flag stating if the current installation still needs setup before it can be used. Also returns an isLoading indicator as the check is async
1515
*/
1616
export const useNeedsSetup = () => {
1717
const { data: onboardingState, isLoading } = useOnboardingState();

components/dashboard/src/dedicated-setup/use-show-dedicated-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import { useQueryParams } from "../hooks/use-query-params";
88
import { useCallback, useState } from "react";
99
import { isCurrentHostExcludedFromSetup, useNeedsSetup } from "./use-needs-setup";
10-
import { useInstallationConfiguration } from "../data/installation/default-workspace-image-query";
10+
import { useInstallationConfiguration } from "../data/installation/installation-config-query";
1111

1212
const FORCE_SETUP_PARAM = "dedicated-setup";
1313
const FORCE_SETUP_PARAM_VALUE = "force";

0 commit comments

Comments
 (0)