Skip to content

Commit 07f3e45

Browse files
committed
remove logs
1 parent f1650d0 commit 07f3e45

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

client/src/components/ResourcesTab.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,7 @@ const ResourcesTab = ({
8080
template: string,
8181
values: Record<string, string>,
8282
): string => {
83-
console.log("Expanding template:", template, "with values:", values);
84-
const result = new UriTemplate(template).expand(values);
85-
console.log("Filled template:", result);
86-
return result;
83+
return new UriTemplate(template).expand(values);
8784
};
8885

8986
const handleTemplateValueChange = async (key: string, value: string) => {

0 commit comments

Comments
 (0)