Skip to content

Commit

Permalink
Fix build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
b-j-roberts committed Dec 19, 2024
1 parent 02a4bac commit f36055c
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const provider = new RpcProvider({
function App() {
// TODO: Move to seperate module ( starknet stuff )
const { connect, connectors } = useConnect()
const { disconnect, error } = useDisconnect()
const { disconnect } = useDisconnect()
const { address, status } = useAccount()
const { starknetkitConnectModal } = useStarknetkitConnectModal({
connectors: connectors as StarknetkitConnector[]
Expand Down
1 change: 0 additions & 1 deletion apps/web/src/components/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { NavLink } from "react-router";
import { useAccount } from "@starknet-react/core";
import "./Header.css";

function Header(props: any) {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/pages/Collection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { mockAddress } from "../api/mock";
import { getMyNewInscriptions, getMyTopInscriptions, getMyInscriptionRequests } from "../api/inscriptions";
import { Pagination } from "../components/Pagination";

function Collection(props: any) {
function Collection(_props: any) {
const filters = ["New", "Top", "Rare", "Requests"];
const [activeFilter, setActiveFilter] = useState(filters[0]);

Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/pages/Info.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function Info(props: any) {
function Info(_props: any) {
// TODO: Diagrams
return (
<div className="w-full flex flex-col items-center h-max bg__color--primary border-t-2 border-[var(--color-primary-light)]">
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/pages/Inscription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import InscriptionLargeView from "../components/inscription/LargeView";
import InscriptionProperty from "../components/inscription/Property";
import { getInscription } from "../api/inscriptions";

function Inscription(props: any) {
function Inscription(_props: any) {
let { id } = useParams<{ id: any }>();

const [inscription, setInscription] = useState<any>();
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/pages/Inscriptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import InscriptionRequestView from "../components/inscription/RequestView";
import { getHotInscriptions, getNewInscriptions, getInscriptionRequests } from "../api/inscriptions";
import { Pagination } from "../components/Pagination";

function Inscritpions(props: any) {
function Inscritpions(_props: any) {
const filters = ["Hot", "New", "Rare"];
const [activeFilter, setActiveFilter] = useState(filters[0]);

Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/pages/Request.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useParams } from "react-router";
import InscriptionLargeView from "../components/inscription/LargeView";
import InscriptionProperty from "../components/inscription/Property";

function Request(props: any) {
function Request(_props: any) {
// TODO: Implement unique request features: ie cancel, accept, reject, bid, other info, ...
let { id } = useParams<{ id: string }>();

Expand Down

0 comments on commit f36055c

Please sign in to comment.