[Functionality] Request DID Resolution #38

Merged
Ghost merged 3 commits from frontend into main 2023-12-09 23:50:02 +00:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 61261d7ac3 - Show all commits

View File

@@ -23,7 +23,6 @@ export default function AccessPoint() {
useEffect(() => { useEffect(() => {
fetch("http://localhost:2979/api/v1/get_repositories", { fetch("http://localhost:2979/api/v1/get_repositories", {
method: "GET", method: "GET",
// credentials: 'include',
}) })
.then((resp) => .then((resp) =>
resp.json().then((jsonData) => { resp.json().then((jsonData) => {

View File

@@ -6,7 +6,7 @@ import {
} from "@/mock/dlg"; } from "@/mock/dlg";
import CustomTable from "@/components/table"; import CustomTable from "@/components/table";
import SummaryDetails from "@/components/summary_card"; import SummaryDetails from "@/components/summary_card";
import {useEffect, useState} from "react"; import { useEffect, useState } from "react";
export default function DLG() { export default function DLG() {
const [resolutionData, setResolutionData] = useState([]); const [resolutionData, setResolutionData] = useState([]);