Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Button, Card, Grid, IconButton, Stack, TextField, Typography } from "@mui/material";
import { useIsMobile } from "../../../common/IsMobileProvider";
import SearchBar from "../../../common/SearchBar";
import gql from "graphql-tag";

Check warning on line 4 in client/src/pages/lab_management/organizations/OrganizationsPage.tsx

View workflow job for this annotation

GitHub Actions / build

'gql' is defined but never used. Allowed unused vars must match /^_/u
import { useLazyQuery, useMutation } from "@apollo/client";
import { useLocation, useNavigate, useParams } from "react-router-dom";
import { useEffect, useState } from "react";
Expand Down Expand Up @@ -171,7 +171,7 @@
color="secondary"
sx={{ alignSelf: "flex-end" }}
onClick={() => {
navigate(`/makerspace/${makerspaceID}/currency?a=${org.username}`);
navigate(`/makerspace/${makerspaceID}/currency?a=${org.username}&l=${org.username}`);
}}
>
View Account
Expand Down Expand Up @@ -267,4 +267,4 @@
);
}} />
);
}
}
Loading