Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
cleanup and prettier
  • Loading branch information
briangregoryholmes committed Dec 24, 2025
commit 9423c29880e785085ce10c9e42a3e4749614cba6
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const PollTimeWhenProjectDeploymentError = 5000;
const PollTimeWhenProjectDeploymentOk = RUNTIME_ACCESS_TOKEN_DEFAULT_TTL / 2; // Proactively refetch the JWT before it expires

const baseGetProjectQueryOptions: Partial<

Check failure on line 6 in web-admin/src/routes/[organization]/[project]/+layout.svelte

View workflow job for this annotation

GitHub Actions / build

'baseGetProjectQueryOptions' is assigned a value but never used
CreateQueryOptions<V1GetProjectResponse, RpcStatus>
> = {
gcTime: Math.min(RUNTIME_ACCESS_TOKEN_DEFAULT_TTL, 1000 * 60 * 5), // Make sure we don't keep a stale JWT in the cache
Expand Down Expand Up @@ -101,7 +101,6 @@
// ) as AuthContext;

$: if (mockedUserId && mockedUserDeploymentCredentials) {

void httpClient.updateQuerySettings({
instanceId: mockedUserDeploymentCredentials.instanceId,
host: mockedUserDeploymentCredentials.runtimeHost,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
const instanceId = httpClient.getInstanceId();

$: ({
canvasEntity: { selectedComponent, componentsStore},
canvasEntity: { selectedComponent, componentsStore },
} = getCanvasStore(canvasName, instanceId));

$: ({ editorContent, updateEditorContent, saveLocalContent, path } =
Expand Down
1 change: 0 additions & 1 deletion web-local/src/routes/(viz)/explore/[name]/+page.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { fetchExploreSpec } from "@rilldata/web-common/features/explores/selectors";
import httpClient from "@rilldata/web-common/runtime-client/http-client";
import { error } from "@sveltejs/kit";
import { get } from "svelte/store";

export const load = async ({ params, depends }) => {
const instanceId = httpClient.getInstanceId();
Expand Down
Loading