Skip to content

Commit

Permalink
fix: remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
BatuhanW committed Dec 4, 2023
1 parent 1fb4679 commit 3f5fe89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion refine-react/plugins/auth-provider-google/extend.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const base = {
_app: {
refineImports: [`AuthBindings`],
import: [`import axios, { AxiosRequestConfig } from "axios";`],
import: [`import axios from "axios";`],
localImport: [
`import { Login } from "pages/login";`,
`import { CredentialResponse } from "interfaces/google";`,
Expand Down
2 changes: 1 addition & 1 deletion refine-vite/plugins/auth-provider-google/extend.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const base = {
_app: {
refineImports: [`AuthBindings`],
import: [`import axios, { AxiosRequestConfig } from "axios";`],
import: [`import axios from "axios";`],
localImport: [
`import { Login } from "./pages/login";`,
`import { CredentialResponse } from "./interfaces/google";`,
Expand Down

0 comments on commit 3f5fe89

Please sign in to comment.