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

chore(deps): Migrate to react 19 #15358

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
908d9af
fix(deps): update react monorepo to v19
renovate[bot] Jan 3, 2025
c597643
update Combobox
0xTxbi Jan 3, 2025
9dfc172
update Button
0xTxbi Jan 3, 2025
f35b475
update ui package.json
0xTxbi Jan 3, 2025
5839d6f
update ui vite config
0xTxbi Jan 3, 2025
c60d2ef
update ui react entry file
0xTxbi Jan 3, 2025
4f051d4
update yarn.lock
0xTxbi Jan 3, 2025
1514e02
update static site
0xTxbi Jan 6, 2025
a08f4e4
Merge branch 'master' into react-19-upgrade
julien51 Jan 6, 2025
cfe7145
fix return
0xTxbi Jan 6, 2025
cfd0592
update combobox
0xTxbi Jan 6, 2025
21d4400
Merge branch 'master' into react-19-upgrade
0xTxbi Jan 6, 2025
5d9762d
Merge branch 'master' into react-19-upgrade
0xTxbi Jan 9, 2025
3440d12
Merge branch 'master' into react-19-upgrade
0xTxbi Jan 9, 2025
de8d760
update ui package.json
0xTxbi Jan 9, 2025
aa75f0e
remove redundant tests
0xTxbi Jan 20, 2025
ab24e80
remove redundant components
0xTxbi Jan 20, 2025
c3f4876
update test
0xTxbi Jan 20, 2025
e0f4952
update yarn.lock
0xTxbi Jan 20, 2025
62dfef7
Merge branch 'master' into react-19-upgrade
0xTxbi Jan 20, 2025
8a16735
update package.json
0xTxbi Jan 20, 2025
b04d0d4
update yarn.lock
0xTxbi Jan 20, 2025
cb888bd
fix unused directives
0xTxbi Jan 20, 2025
9cc6d43
update recaptcha usage
0xTxbi Jan 20, 2025
e88937d
update useref usage
0xTxbi Jan 20, 2025
dd37f71
Revert "fix unused directives"
0xTxbi Jan 31, 2025
da635ea
Revert "update recaptcha usage"
0xTxbi Jan 31, 2025
e4509e2
Revert "update useref usage"
0xTxbi Jan 31, 2025
4f9218a
unpin deps
0xTxbi Jan 31, 2025
ad2422c
Merge branch 'master' into react-19-upgrade
0xTxbi Jan 31, 2025
fcf131e
update ui components wip
0xTxbi Jan 31, 2025
92103b0
Merge branch 'master' into react-19-upgrade
0xTxbi Feb 27, 2025
dccf93a
update yarn.lock
0xTxbi Feb 27, 2025
44d9ccd
update package.json
0xTxbi Feb 27, 2025
fcde6f9
fix headless ui type errors
0xTxbi Feb 27, 2025
8c6185c
Merge branch 'master' into react-19-upgrade
0xTxbi Feb 27, 2025
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
Prev Previous commit
Next Next commit
update static site
  • Loading branch information
0xTxbi committed Jan 6, 2025
commit 1514e029b64be5e9f57e4ba2fdbbaf38e42fed9d
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useRef, useEffect } from 'react'
import { useRef, useEffect } from 'react'
import * as Plot from '@observablehq/plot'

export function HistoricalChart({
Expand All @@ -7,7 +7,7 @@ export function HistoricalChart({
supportedNetworks,
viewFilter,
}) {
const ref = useRef<HTMLInputElement>()
const ref = useRef<HTMLInputElement>(null)
useEffect(() => {
const barChart = Plot.plot({
width: 1200,
Expand Down
Loading