Bug Fixes

This commit is contained in:
headlesdev
2025-05-24 21:15:52 +02:00
parent fe6586d051
commit d095524291
11 changed files with 46 additions and 30 deletions

View File

@@ -33,7 +33,7 @@ const useNetworks = () => {
});
};
const deleteNetwork = (networkId: string): Promise<string> | string => {
const deleteNetwork = (networkId: number): Promise<string> | string => {
if (!networkId) {
return 'Network ID is required';
}