-
Notifications
You must be signed in to change notification settings - Fork 0
Implement batch name resolution for emails #418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
30a148d
9ff5d6d
2ccd435
84cf6f8
108d933
feab435
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,7 @@ import { Notifications } from "@mantine/notifications"; | |
|
|
||
| import ColorSchemeContext from "./ColorSchemeContext"; | ||
| import { Router } from "./Router"; | ||
| import { UserResolverProvider } from "./components/NameOptionalCard"; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix the ESLint import/extensions violation. The import statement is missing a file extension. While this may work with your current build configuration, it violates the ESLint rule and could cause issues in some environments. Based on coding guidelines. Apply this diff to add the file extension: -import { UserResolverProvider } from "./components/NameOptionalCard";
+import { UserResolverProvider } from "./components/NameOptionalCard/index";Alternatively, if there's an -import { UserResolverProvider } from "./components/NameOptionalCard";
+import { UserResolverProvider } from "./components/NameOptionalCard/index.tsx";
🧰 Tools🪛 ESLint[error] 11-11: Missing file extension for "./components/NameOptionalCard" (import/extensions) 🤖 Prompt for AI Agents |
||
|
|
||
| export default function App() { | ||
| const preferredColorScheme = useColorScheme(); | ||
|
|
@@ -25,7 +26,9 @@ export default function App() { | |
| forceColorScheme={colorScheme} | ||
| > | ||
| <Notifications position="top-right" /> | ||
| <Router /> | ||
| <UserResolverProvider> | ||
| <Router /> | ||
| </UserResolverProvider> | ||
| </MantineProvider> | ||
| </ColorSchemeContext.Provider> | ||
| ); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.