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

⬆️ upgrade @types/react to v18.3.19 #238

Merged
merged 1 commit into from
Mar 22, 2025
Merged
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
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -1764,9 +1764,9 @@
integrity sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==

"@types/react@^18.0.26":
version "18.3.18"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.18.tgz#9b382c4cd32e13e463f97df07c2ee3bbcd26904b"
integrity sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==
version "18.3.19"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.19.tgz#2b6a01315c9b1b644a8799a7d33efb027150240f"
integrity sha512-fcdJqaHOMDbiAwJnXv6XCzX0jDW77yI3tJqYh1Byn8EL5/S628WRx9b/y3DnNe55zTukUQKrfYxiZls2dHcUMw==
dependencies:
"@types/prop-types" "*"
csstype "^3.0.2"

Unchanged files with check annotations Beta

return Math.floor(Math.random() * (max - min + 1)) + min;
};
type Fetcher = (...args: Parameters<typeof fetch>) => Promise<any>;

Check warning on line 132 in src/pages/Popup/utils/__collection.ts

GitHub Actions / Build, lint, and test

Unexpected any. Specify a different type
export const fetcher: Fetcher = (...args) =>
fetch(...args).then((res) => {
import "./../../styles/fonts.css";
const container = document.getElementById("app-container");
const root = createRoot(container!); // createRoot(container!) if you use TypeScript

Check warning on line 8 in src/pages/Popup/index.tsx

GitHub Actions / Build, lint, and test

Forbidden non-null assertion
root.render(<Popup />);
// Types
type StorageArea = "sync" | "local" | "managed" | "session";
type StorageValue = any;

Check warning on line 5 in src/pages/Popup/context/ChromeStorage.tsx

GitHub Actions / Build, lint, and test

Unexpected any. Specify a different type
interface CacheItem {
data: StorageValue;
if (!subscribers.current.has(key)) {
subscribers.current.set(key, new Set());
}
subscribers.current.get(key)!.add(callback);

Check warning on line 147 in src/pages/Popup/context/ChromeStorage.tsx

GitHub Actions / Build, lint, and test

Forbidden non-null assertion
// Return unsubscribe function
return () => {
import "./index.css";
const container = document.getElementById("app-container");
const root = createRoot(container!); // createRoot(container!) if you use TypeScript

Check warning on line 8 in src/pages/Panel/index.tsx

GitHub Actions / Build, lint, and test

Forbidden non-null assertion
root.render(<Panel />);