Skip to content

Commit

Permalink
fix: lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Brodypen committed Nov 2, 2023
1 parent 1835561 commit a86cffa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/WebDev/WebDev.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import axios from 'axios';
// import axios from 'axios';
import React from 'react';
import { Col, Container, Row, Button } from 'react-bootstrap';
import headerImage from '../../assets/webdev.svg';
import { MetaData } from '../../components/Meta/MetaData';
import { useQuery, useQueryClient } from 'react-query';
import Loading from '../../components/Loading/Loading';
// import { useQuery, useQueryClient } from 'react-query';
// import Loading from '../../components/Loading/Loading';
import './WebDev.css';

const meta = {
Expand All @@ -22,7 +22,7 @@ const meta = {
};*/

const WebDev = () => {
const queryClient = useQueryClient();
// const queryClient = useQueryClient();
/*const { data, isFetching } = useQuery('tutors', fetchTutors, {
initialData: () => queryClient.getQueryData('tutors'),
staleTime: 300000,
Expand Down

0 comments on commit a86cffa

Please sign in to comment.