Skip to content

Commit

Permalink
correct files with eslint suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeesun Kim authored and Jeesun Kim committed Mar 14, 2024
1 parent 92e47b3 commit 24ae723
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/(sidebar)/explore-endpoints/[[...pages]]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";

import { useState } from "react";
import React, { useState } from "react";
import { usePathname } from "next/navigation";
import {
Alert,
Expand Down
2 changes: 1 addition & 1 deletion src/components/GenerateKeypair.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Icon, Input } from "@stellar/design-system";
import { Input } from "@stellar/design-system";

export const GenerateKeypair = ({
publicKey,
Expand Down
2 changes: 1 addition & 1 deletion src/components/NetworkSelector/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import React, {
useCallback,
useEffect,
useLayoutEffect,
Expand Down
2 changes: 2 additions & 0 deletions src/components/Tabs/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable */

import "./styles.scss";

type Tab = {
Expand Down
2 changes: 2 additions & 0 deletions src/store/createStore.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable */

import { create } from "zustand";
import { immer } from "zustand/middleware/immer";
import { querystring } from "zustand-querystring";
Expand Down
2 changes: 2 additions & 0 deletions src/store/useStore.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable */

"use client";
import { useContext } from "react";
import { useStore as useZustandStore } from "zustand";
Expand Down

0 comments on commit 24ae723

Please sign in to comment.