Skip to content

Commit 6afec19

Browse files
committed
Remove stray \!
1 parent 475db10 commit 6afec19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gui/src/app/core/Project/ProjectQueryLoading.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ export const fetchRemoteProject = async (query: QueryParams) => {
9696
comment: string = "# ",
9797
) => {
9898
if (query[param]) {
99-
const value = await tryFetch(query[param]!);
99+
const value = await tryFetch(query[param]);
100100
return value ?? `${comment}Failed to load content from ${query[param]}`;
101101
}
102-
return data[queryParamToDataModelFieldMap[param]!];
102+
return data[queryParamToDataModelFieldMap[param]];
103103
};
104104

105105
[

0 commit comments

Comments
 (0)