Skip to content

Commit 82f7c5d

Browse files
authored
Merge pull request #1904 from darena-patrick/fix/compose-deploy-url
fix: Missing `/compose` in auto-deploy URL
2 parents 3d2ae52 + bf115c7 commit 82f7c5d

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)