Skip to content

Commit f8242b4

Browse files
committed
fix: actions
1 parent 2ab188f commit f8242b4

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ PUBLIC_PROVISIONER_SHARED_SECRET="your-provisioner-shared-secret"
9292

9393
PUBLIC_ESIGNER_BASE_URL="http://localhost:3004"
9494
PUBLIC_FILE_MANAGER_BASE_URL="http://localhost:3005"
95+
PUBLIC_PROFILE_EDITOR_BASE_URL="http://localhost:3006"
9596

9697
DREAMSYNC_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/dreamsync
9798
VITE_DREAMSYNC_BASE_URL="http://localhost:8888"

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
"scripts": {
157157
"dev": "chokidar \"src/**/*\" -c \"pnpm build\" --initial",
158158
"build": "svelte-kit sync && svelte-package",
159-
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
159+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --threshold error",
160160
"format": "prettier --write .",
161161
"format:check": "prettier --check .",
162162
"lint": "prettier --check . && eslint .",

packages/ui/src/lib/components/ui/tooltip/index.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ import { Tooltip as TooltipPrimitive } from 'bits-ui';
22
import Trigger from './tooltip-trigger.svelte';
33
import Content from './tooltip-content.svelte';
44

5-
const Root = TooltipPrimitive.Root;
6-
const Provider = TooltipPrimitive.Provider;
7-
const Portal = TooltipPrimitive.Portal;
5+
/* eslint-disable @typescript-eslint/no-explicit-any */
6+
// bits-ui re-export: $$IsomorphicComponent type cannot be named in declarations
7+
const Root = TooltipPrimitive.Root as any;
8+
const Provider = TooltipPrimitive.Provider as any;
9+
const Portal = TooltipPrimitive.Portal as any;
810

911
export {
1012
Root,

0 commit comments

Comments
 (0)