2024-03-27 16:11:53 +00:00
|
|
|
import { useActiveOrders } from '@vegaprotocol/orders';
|
2024-03-01 14:25:56 +00:00
|
|
|
import { useVegaWallet } from '@vegaprotocol/wallet-react';
|
2023-10-16 14:49:23 +00:00
|
|
|
|
|
|
|
export const PartyActiveOrdersHandler = () => {
|
|
|
|
const { pubKey } = useVegaWallet();
|
2024-03-27 16:11:53 +00:00
|
|
|
useActiveOrders(pubKey);
|
2023-10-16 14:49:23 +00:00
|
|
|
return null;
|
|
|
|
};
|