Skip to content

Commit

Permalink
Fix import formatting in fetcher.ts and useNodeVersion.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlbui committed Apr 25, 2024
1 parent 97e78f5 commit cf4725c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions hooks/fetcher.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { authService } from "../services/auth.service"
import { useGlobals } from "../utils/globals"
import { isDev } from "../utils/is-dev"
import { authService } from '../services/auth.service'
import { useGlobals } from '../utils/globals'
import { isDev } from '../utils/is-dev'

const { apiBase } = useGlobals()

Expand Down
6 changes: 3 additions & 3 deletions hooks/useNodeVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import useSWR from 'swr'
import { fetcher } from './fetcher'
import { NodeVersion } from '../model/node-version'
import { useGlobals } from '../utils/globals'
import { useContext } from 'react'
import { FetcherContext } from '../components/FetcherContextProvider'
import { ToastContext } from '../components/ToastContextProvider'
import { useContext } from 'react';
import { FetcherContext } from '../components/FetcherContextProvider';
import { ToastContext } from '../components/ToastContextProvider';

type NodeVersionResult = {
isLoading: boolean
Expand Down

0 comments on commit cf4725c

Please sign in to comment.