Skip to content

Commit

Permalink
squash
Browse files Browse the repository at this point in the history
  • Loading branch information
macdiesel committed Oct 30, 2024
1 parent ef75bac commit f0dc95b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/dashboard/DashboardPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ const DashboardPage = () => {
const userFirstName = authenticatedUser?.name?.split(' ').shift();

const { data: enterpriseCustomer } = useEnterpriseCustomer();
const { data: { subscriptions, customerAgreement, subscriptionLicense } } = useSubscriptions();
const { data: subscriptions } = useSubscriptions();
const { data: { customerAgreement, subscriptionLicense } } = useSubscriptions();

const handleSubscriptionLicenseActivationAlertClose = () => {
queryClient.setQueryData(
Expand Down

0 comments on commit f0dc95b

Please sign in to comment.