Skip to content

Commit 4a14062

Browse files
formatting
1 parent aaca322 commit 4a14062

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/services/GetNodeLabelsRelTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import api from '../API/Index';
44
export const getNodeLabelsAndRelTypes = async () => {
55
const formData = new FormData();
66
try {
7-
const response = await api.post<ServerData>(`/schema`,formData);
7+
const response = await api.post<ServerData>(`/schema`, formData);
88
return response;
99
} catch (error) {
1010
console.log(error);

frontend/src/services/GetOrphanNodes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import api from '../API/Index';
44
export const getOrphanNodes = async () => {
55
const formData = new FormData();
66
try {
7-
const response = await api.post<OrphanNodeResponse>(`/get_unconnected_nodes_list`,formData);
7+
const response = await api.post<OrphanNodeResponse>(`/get_unconnected_nodes_list`, formData);
88
return response;
99
} catch (error) {
1010
console.log(error);

0 commit comments

Comments
 (0)