File tree Expand file tree Collapse file tree
src/lib/components/ui/tooltip Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ PUBLIC_PROVISIONER_SHARED_SECRET="your-provisioner-shared-secret"
9292
9393PUBLIC_ESIGNER_BASE_URL = " http://localhost:3004"
9494PUBLIC_FILE_MANAGER_BASE_URL = " http://localhost:3005"
95+ PUBLIC_PROFILE_EDITOR_BASE_URL = " http://localhost:3006"
9596
9697DREAMSYNC_DATABASE_URL = postgresql://postgres:postgres@localhost:5432/dreamsync
9798VITE_DREAMSYNC_BASE_URL = " http://localhost:8888"
Original file line number Diff line number Diff line change 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 ." ,
Original file line number Diff line number Diff line change @@ -2,9 +2,11 @@ import { Tooltip as TooltipPrimitive } from 'bits-ui';
22import Trigger from './tooltip-trigger.svelte' ;
33import 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
911export {
1012 Root ,
You can’t perform that action at this time.
0 commit comments