1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-16 12:13:07 +01:00
BlueWallet/hooks/useWidgetCommunication.ts

10 lines
266 B
TypeScript
Raw Normal View History

2024-11-08 21:59:39 -04:00
const useWidgetCommunication = (): void => {};
2024-11-08 21:07:35 -04:00
export const isBalanceDisplayAllowed = async (): Promise<boolean> => {
2024-11-08 21:59:39 -04:00
return true;
2024-11-08 21:07:35 -04:00
};
2024-11-08 21:59:39 -04:00
export const setBalanceDisplayAllowed = async (_allowed: boolean): Promise<void> => {};
2024-11-08 21:07:35 -04:00
2024-11-08 21:59:39 -04:00
export default useWidgetCommunication;