Skip to content

Commit

Permalink
Fix type imports in Cloud UI (#4489)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericpgreen2 authored Apr 2, 2024
1 parent fed7ebf commit 84f9c9f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web-admin/src/features/errors/error-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* the `ErrorBoundary` component catches and routes to the `ErrorPage`.
*/

import { derived, writable, Writable } from "svelte/store";
import { derived, writable, type Writable } from "svelte/store";

export interface ErrorStoreState {
statusCode: number | null;
Expand Down
2 changes: 1 addition & 1 deletion web-admin/src/features/errors/error-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
} from "../../client";
import { ADMIN_URL } from "../../client/http-client";
import { getProjectRuntimeQueryKey } from "../projects/selectors";
import { ErrorStoreState, errorStore } from "./error-store";
import { errorStore, type ErrorStoreState } from "./error-store";

export function createGlobalErrorCallback(queryClient: QueryClient) {
return async (error: AxiosError, query: Query) => {
Expand Down
2 changes: 1 addition & 1 deletion web-admin/src/features/view-as-user/setViewedAsUser.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
adminServiceGetDeploymentCredentials,
getAdminServiceGetDeploymentCredentialsQueryKey,
V1GetDeploymentCredentialsResponse,
type V1GetDeploymentCredentialsResponse,
type V1User,
} from "@rilldata/web-admin/client";
import { viewAsUserStore } from "@rilldata/web-admin/features/view-as-user/viewAsUserStore";
Expand Down

1 comment on commit 84f9c9f

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.