Skip to content
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

build(deps): bump next from 13.5.6 to 14.1.1 #758

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 56 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -61,7 +61,7 @@
"fuse.js": "^6.6.2",
"intro.js": "^6.0.0",
"intro.js-react": "^0.7.1",
"next": "^13.5.4",
"next": "^14.1.1",
"nodemailer": "^6.9.9",
"next-auth": "^4.24.5",
"nprogress": "^0.2.0",

Unchanged files with check annotations Beta

viewportHeight: 1080,
viewportWidth: 1920,
baseUrl: 'http://localhost:3000',
setupNodeEvents(on, config) {

Check warning on line 26 in cypress.config.ts

GitHub Actions / Run ESLint + Prettier

'config' is defined but never used. Allowed unused args must match /^_/u
on('after:run', async () => {
await prisma.$disconnect();
});
onValueChange,
onInputChange,
options,
autoFocus,

Check warning on line 19 in src/components/AutoCompleteMajor.tsx

GitHub Actions / Run ESLint + Prettier

'autoFocus' is defined but never used. Allowed unused args must match /^_/u
placeholder = 'Major',
defaultValue = '',

Check warning on line 21 in src/components/AutoCompleteMajor.tsx

GitHub Actions / Run ESLint + Prettier

'defaultValue' is assigned a value but never used. Allowed unused vars must match /^_/u
...props
}) => {
const containerRef = useRef<HTMLDivElement>(null);
default: 'text-sm font-medium',
};
export interface ButtonProps extends React.ComponentPropsWithoutRef<'button'> {

Check warning on line 28 in src/components/Button.tsx

GitHub Actions / Run ESLint + Prettier

Caution: `React` also has a named export `ComponentPropsWithoutRef`. Check if you meant to write `import {ComponentPropsWithoutRef} from 'react'` instead
color?: keyof typeof colorClasses;
size?: keyof typeof sizeClasses;
width?: keyof typeof widthClasses;
left: '35%',
} as React.CSSProperties;
export default function ErrorMessage(error: any) {

Check warning on line 18 in src/components/common/ErrorMessage.tsx

GitHub Actions / Run ESLint + Prettier

Unexpected any. Specify a different type
return (
<Alert id="errMess1" severity="error" style={errorMessageStyle}>
Something went wrong - {error}!
export default function WarningMessageModal(props: WarningMessageModalProps) {
const { setWarning, message } = props;
const [expand, setExpand] = React.useState(false);

Check warning on line 12 in src/components/common/WarningMessageModal.tsx

GitHub Actions / Run ESLint + Prettier

Caution: `React` also has a named export `useState`. Check if you meant to write `import {useState} from 'react'` instead
return (
<div className="fixed bottom-0 right-0 m-8 flex gap-2 rounded-md bg-yellow-400 transition-transform hover:scale-105">
const router = useRouter();
const [showHomeOnboardingModal, setShowHomeOnboardingModal] = useState(false);
React.useEffect(() => {

Check warning on line 38 in src/components/home/Home.tsx

GitHub Actions / Run ESLint + Prettier

Caution: `React` also has a named export `useEffect`. Check if you meant to write `import {useEffect} from 'react'` instead
setShowHomeOnboardingModal((userData && !userData.seenHomeOnboardingModal) ?? false);
if (!isLoading && userData && !userData.onboardingComplete) {
router.push('/app/onboarding');
)[1],
);
}
}, [data]);

Check warning on line 78 in src/components/home/Profile.tsx

GitHub Actions / Run ESLint + Prettier

React Hook useEffect has a missing dependency: 'isLoading'. Either include it or remove the dependency array
const updateProfile = trpc.user.updateUserProfile.useMutation({
async onSuccess() {
return true;
};
const handleResetPassword = () => {

Check warning on line 182 in src/components/home/Profile.tsx

GitHub Actions / Run ESLint + Prettier

'handleResetPassword' is assigned a value but never used. Allowed unused vars must match /^_/u
// TODO: Implement resetting password here
return true;
};
options,
autoFocus,
placeholder = 'Course Code',
defaultValue = '',

Check warning on line 23 in src/components/onboarding/AutoCompleteSearchBarOnboarding.tsx

GitHub Actions / Run ESLint + Prettier

'defaultValue' is assigned a value but never used. Allowed unused vars must match /^_/u
...props
}) => {
const containerRef = useRef<HTMLDivElement>(null);