Skip to content

Commit f193a8a

Browse files
committed
chore: PR feedback changes
1 parent 9441689 commit f193a8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-test-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# https://pnpm.io/next/continuous-integration#github-actions
66

7-
name: Build and test TypeScript SDK CI
7+
name: Build and test
88

99
on:
1010
push:

src/lib/config/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import {env} from '$env/dynamic/private';
44
import {version} from '$app/environment';
55

6-
//write a method to handle if the KINDE_REDIRECT_URL is not a valid url new URL(env.KINDE_REDIRECT_URL).origin
76
function getBaseURL() {
87
try {
98
return new URL(env.KINDE_REDIRECT_URL).origin;
109
} catch (error) {
10+
console.error('Invalid KINDE_REDIRECT_URL:', error.message);
1111
return '';
1212
}
1313
}

0 commit comments

Comments
 (0)