We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df8fffc commit 1ccdb1fCopy full SHA for 1ccdb1f
src/publicApi.ts
@@ -342,7 +342,7 @@ export function rawWorkspaceToWorkspaceData(rawWorkspaces: Workspace | Workspace
342
// TODO: remove this once public api is fixed, ref https://github.com/gitpod-io/gitpod/pull/18292
343
function getNormalizedURL(contextUrl: string | undefined): string | undefined {
344
if (!contextUrl) {
345
- return
+ return;
346
}
347
348
const idx = contextUrl.search(/http[s]?:\/\//);
@@ -357,5 +357,5 @@ function getNormalizedURL(contextUrl: string | undefined): string | undefined {
357
} catch {
358
359
360
- return undefined
361
0 commit comments