Skip to content

Commit

Permalink
Fixed the mino bugs and scipt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
itsparser committed Feb 5, 2025
1 parent f44fe22 commit b8d10f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
13 changes: 6 additions & 7 deletions crates/app/src/pages/api/details/apis-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import {Separator} from "@/components/ui/separator.tsx";
import ErrorBoundary from "@/components/errorBoundary.tsx";
import {CircleFadingPlusIcon, Home, Settings} from "lucide-react";
import {
Breadcrumb,
BreadcrumbItem,
BreadcrumbLink,
BreadcrumbList,
BreadcrumbPage,
BreadcrumbSeparator,
Breadcrumb,
BreadcrumbItem,
BreadcrumbLink,
BreadcrumbList,
BreadcrumbPage,
BreadcrumbSeparator,
} from "@/components/ui/breadcrumb.tsx";
import {Api} from "@/types/api.ts";
import {Select, SelectContent, SelectItem, SelectTrigger, SelectValue,} from "@/components/ui/select.tsx";
Expand Down Expand Up @@ -62,7 +62,6 @@ export const ApiLayout = () => {
setCurrentApiDetails(selectedApi);
}
});
console.log(location.pathname);
if (location.pathname.includes("settings")) setCurrentMenu("Settings");
else if (location.pathname.includes("routes/add"))
setCurrentMenu("Add New Route");
Expand Down
1 change: 0 additions & 1 deletion crates/app/src/pages/workers/details/info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ export default function WorkerInfo() {
if (componentId && workerName) {
API.getParticularWorker(componentId, workerName).then((response) => {
setWorkerDetails(response);
console.log("response", response);
});
}
}, [componentId, workerName]);
Expand Down

0 comments on commit b8d10f7

Please sign in to comment.