You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the plugin forces me to break them with next-* imports
import Core from "next";
+ import Auth from "next-auth";
import Image from "next/image";
import Link from "next/link"
- import Auth from "next-auth";
Same issue for the relative imports, the plugin wants me to change the order this way
import e1 from "../businesses";
+ import e3 from "../businesses-users";
import e2 from "../businesses/components";
- import e3 from "../businesses-users";
The text was updated successfully, but these errors were encountered:
Hey, I was going through the codebase and I believe I have a basic understanding about required changes for the particular issue. Would like to give it a try if the issue is up for grabs.
I want to keep
next
andnext/*
imports togetherBut the plugin forces me to break them with
next-*
importsSame issue for the relative imports, the plugin wants me to change the order this way
The text was updated successfully, but these errors were encountered: