Skip to content

Commit 8d104c5

Browse files
authored
fix(front): remove unnecessary dot from wait url (#73)
## Description Removed an unnecessary dot from the URL constructor for the wait page during the organization creation process. ## Type of Change <!-- Mark relevant items with an [x] --> - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update - [ ] Performance improvement - [ ] Code refactoring - [ ] Enterprise Edition feature - [ ] Test updates ## Testing <!-- How has this been tested? --> - [ ] Unit tests added/updated - [ ] Integration tests added/updated - [x] Manual testing performed - [ ] Not applicable ## Documentation <!-- Mark relevant items with an [x] --> - [ ] Documentation update required - [ ] Documentation updated - [x] No documentation changes needed ## Checklist - [x] Code follows project style guidelines - [x] Self review performed - [x] Comments added to hard-to-understand areas - [x] Tests prove change is effective - [x] Relevant documentation updated - [x] Changelog updated if needed - [x] CI/CD changes required ## Additional Notes <!-- Add any additional notes for reviewers -->
1 parent 1b03f46 commit 8d104c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

front/lib/front_web/controllers/organization_onboarding_controller.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ defmodule FrontWeb.OrganizationOnboardingController do
8888
if me_host == nil do
8989
wait_for_organization_path(conn, :wait_for_organization, org_id: org_id)
9090
else
91-
"https://#{me_host}.#{domain}/wait?org_id=#{org_id}"
91+
"https://#{me_host}#{domain}/wait?org_id=#{org_id}"
9292
end
9393
end
9494
end

0 commit comments

Comments
 (0)