Skip to content

chore: update dependencies and fix eslint errors#11

Merged
vnepogodin merged 4 commits into
mainfrom
update-dependencies
May 29, 2026
Merged

chore: update dependencies and fix eslint errors#11
vnepogodin merged 4 commits into
mainfrom
update-dependencies

Conversation

@azdanov
Copy link
Copy Markdown
Member

@azdanov azdanov commented May 15, 2026

Continuation for #10

@azdanov azdanov marked this pull request as ready for review May 29, 2026 03:16
@azdanov azdanov requested a review from Copilot May 29, 2026 03:17
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Updates runtime/dev dependencies and resolves ESLint/type issues introduced by the upgrades (continuation of #10).

Changes:

  • Bumped a set of key dependencies (Next.js, React, Recharts, Tailwind, etc.) and regenerated bun.lock.
  • Adjusted keyboard shortcut hooks to satisfy hook dependency/linting and simplify timer cleanup.
  • Updated chart tooltip typing and minor UI lint suppressions/cleanup.

Reviewed changes

Copilot reviewed 8 out of 9 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
src/hooks/use-keyboard-shortcut-listener.ts Refactors timer handling and adjusts hook dependencies for shortcut listeners.
src/components/ui/data-table.tsx Adds an inline ESLint suppression for a hook-related rule.
src/components/ui/chart.tsx Updates tooltip-related types and a React key usage.
src/components/charts.tsx Aligns tooltip formatter function signatures with Recharts types.
src/app/dashboard/profile/page.tsx Removes an unused React import to satisfy linting.
src/app/actions/stats.ts Minor formatting cleanup in overload declarations.
src/app/actions/session.ts Minor formatting cleanup in overload declarations.
package.json Updates dependency versions across runtime and dev tooling.
bun.lock Regenerates lockfile to reflect updated dependency graph.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

let timer: NodeJS.Timeout | null = null;

useEffect(() => {
let timer: NodeJS.Timeout | undefined;
Comment on lines +52 to +55
clearTimeout(timer);
} else {
colonPressed = false;
clearTimer(timer);
clearTimeout(timer);
return () => {
globalThis.removeEventListener('keydown', handleKeyDown);
clearTimer(timer);
clearTimeout(timer);
setRowSelection({});
}, [resetSelection]);
const primarySearchFilterInputRef = React.useRef<HTMLInputElement>(null);
// eslint-disable-next-line react-hooks/incompatible-library
Copy link
Copy Markdown
Member

@vnepogodin vnepogodin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Many thanks

@vnepogodin vnepogodin merged commit 10c0f83 into main May 29, 2026
@vnepogodin vnepogodin deleted the update-dependencies branch May 29, 2026 23:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants