Merge pull request 'feat(dashboard): update getShortLink to use HTTPS' (#9) from main into prod
All checks were successful
Release / Release (push) Successful in 1m47s

Reviewed-on: #9
This commit is contained in:
Jan Gleytenhoover 2025-01-21 10:47:29 +00:00
commit 4c2007730f

View file

@ -25,7 +25,7 @@ export class DashboardComponent {
}
getShortLink(id: string): string {
return window.location.hostname + '/' + id;
return "https://" + window.location.hostname + '/' + id;
}
ngOnInit(): void {