Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8defc802b0 | |||
| 4f3fb44fcd | |||
| ef24f269dc | |||
| 51df8293c3 |
@@ -53,14 +53,17 @@ export default function SocketIOContextProvider({children}) {
|
||||
queryClient.refetchQueries({ // refetches product Page API call
|
||||
queryKey: [...queryKeys.product_page],
|
||||
})
|
||||
queryClient.refetchQueries({ // refetches productProvision API call
|
||||
queryKey: [...queryKeys.myproduct_provision],
|
||||
})
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// socket.on(socketOnEvents.refresh_provision, (data) => {
|
||||
// queryClient.refetchQueries({ // refetches productProvision API call
|
||||
// queryKey: [...queryKeys.myproduct_provision],
|
||||
// })
|
||||
// queryClient.refetchQueries({ // refetches productProvision API call
|
||||
// queryKey: [...queryKeys.myproduct_provision],
|
||||
// })
|
||||
// // queryClient.invalidateQueries({ queryKey: [...queryKeys.product_page] })
|
||||
// queryClient.refetchQueries({ // refetches product Page API call
|
||||
// queryKey: [...queryKeys.product_page],
|
||||
|
||||
@@ -73,7 +73,7 @@ export default function Subscription() {
|
||||
<div className="card-body pricing-content">
|
||||
<div className="pricing-content-card" style={{minHeight: '350px'}}>
|
||||
<h5>{value.display_name}</h5>
|
||||
<h2 className="text-primary pt-3">${value.monthly}</h2>
|
||||
<h2 className="text-primary pt-3">{value?.currency}{value.monthly}</h2>
|
||||
<p className="text-primary pb-3">/ Monthly</p>
|
||||
<ol className="py-2"
|
||||
style={{fontSize: '16px', fontWeight: 'bold', textAlign: 'left'}}>
|
||||
|
||||
Reference in New Issue
Block a user