2
0

⬆️ Upgrade dependencies

This commit is contained in:
Baptiste Arnaud
2023-01-28 14:42:50 +01:00
parent bfd85b4fd3
commit 201939f8a3
16 changed files with 1713 additions and 1542 deletions

View File

@ -26,6 +26,7 @@ test('should be configurable', async ({ page }) => {
await expect(page).toHaveURL(
`/typebots/${linkedTypebotId}/edit?parentId=${typebotId}`
)
await page.waitForTimeout(500)
await page.click('[aria-label="Navigate back"]')
await expect(page).toHaveURL(`/typebots/${typebotId}/edit`)
await page.click('text=Jump in My link typebot 2')

View File

@ -118,7 +118,11 @@ export const CustomDomainModal = ({
<Stack>
<Text fontWeight="bold">Value</Text>
<Text>
{env('VIEWER_INTERNAL_URL') ?? getViewerUrl()}
{
new URL(
env('VIEWER_INTERNAL_URL') ?? getViewerUrl() ?? ''
).hostname
}
</Text>
</Stack>
</HStack>