feat(dashboard): update getShortLink to use HTTPS #9

Merged
jank merged 1 commit from main into prod 2025-01-21 10:47:30 +00:00

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 {