We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c7bcfe commit 8eb496bCopy full SHA for 8eb496b
1 file changed
apps/playground/src/components/Header/ActionsDropdown/UploadBundleDialog.tsx
@@ -48,8 +48,8 @@ export const UploadBundleDialog = ({ isOpen, setIsOpen }: UploadBundleDialogProp
48
}
49
50
const bundle = state.bundle;
51
- const loginPath = new URL('/v1/auth/login', apiBaseUrl).href;
52
- const createInstrumentPath = new URL('/v1/instruments', apiBaseUrl).href;
+ const loginPath = `${apiBaseUrl}/v1/auth/login`;
+ const createInstrumentPath = `${apiBaseUrl}/v1/instruments`;
53
54
let loginResponse: AxiosResponse<AuthPayload>;
55
try {
0 commit comments