Skip to content

Commit

Permalink
fix: drive explorer endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
froid1911 committed Feb 23, 2024
1 parent 95d3f5f commit 0e31173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/graphql/[driveId]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ export default function DriveGraphQL() {
const router = useRouter();
const query = router.query.query;

return <iframe src={`${process.env.NEXT_PUBLIC_SWITCHBOARD_HOST}/${router.query.driveId}${query ? "?query=" + query : ""}`} height="100%" width="100%" className="min-h-[calc(100vh-63px)]" />;
return <iframe src={`${process.env.NEXT_PUBLIC_SWITCHBOARD_HOST}/explorer/${router.query.driveId}${query ? "?query=" + query : ""}`} height="100%" width="100%" className="min-h-[calc(100vh-63px)]" />;
}

0 comments on commit 0e31173

Please sign in to comment.