Skip to content

Commit bf115c7

Browse files
author
Patrick Schiess
committed
fix: Missing /compose in auto-deploy URL
1 parent 80e6f21 commit bf115c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/dokploy/components/dashboard/application/deployments/show-deployments.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export const ShowDeployments = ({
8686
<span>Webhook URL: </span>
8787
<div className="flex flex-row items-center gap-2">
8888
<span className="break-all text-muted-foreground">
89-
{`${url}/api/deploy/${refreshToken}`}
89+
{`${url}/api/deploy${type === 'compose' ? '/compose' : ''}/${refreshToken}`}
9090
</span>
9191
{(type === "application" || type === "compose") && (
9292
<RefreshToken id={id} type={type} />

0 commit comments

Comments
 (0)