Skip to content

Commit

Permalink
fix: release packages
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony23991 committed Oct 30, 2024
1 parent 9b6871b commit faee72c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export type JustaNameConfigWithoutDefaultChainId = Omit<
export interface JustaNameContextProps
extends Omit<JustaNameConfigDefaults, 'defaultChainId'> {
justanameConfig: JustaNameProviderConfig;
// handleJustaNameConfig: (config: JustaNameProviderConfig) => void;
// handleJustaNameConfig: (config: JustaNameProviderConfig) => void
justaname: JustaName;
routes: typeof defaultRoutes;
backendUrl?: string;
Expand Down Expand Up @@ -91,8 +91,8 @@ export const JustaNameProvider: FC<JustaNameProviderProps> = ({
return !chainId
? undefined
: chainId !== 1 && chainId !== 11155111
? 1
: chainId;
? 1
: chainId;
}, [chainId]);

// const [config, setConfig] = useState<JustaNameProviderConfig>(initialConfig);
Expand Down

0 comments on commit faee72c

Please sign in to comment.