Skip to content

Commit 8cb78e1

Browse files
committed
fix: fix breaking changes caused by AS 3.0.0 update
1 parent da69df9 commit 8cb78e1

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@rjsf/utils": "5.18.3",
5353
"@rjsf/validator-ajv8": "5.18.3",
5454
"@sentry/nextjs": "7.118.0",
55-
"@squonk/account-server-client": "2.4.1",
55+
"@squonk/account-server-client": "3.0.0-rc.2",
5656
"@squonk/data-manager-client": "3.0.0",
5757
"@squonk/mui-theme": "3.0.2",
5858
"@squonk/sdf-parser": "1.3.0",

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/finance/ProductCharges.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { useState } from "react";
22

33
import { type ProductDetail } from "@squonk/account-server-client";
4-
import { useGetProduct, useGetProductCharges } from "@squonk/account-server-client/product";
4+
import { useGetProductCharges } from "@squonk/account-server-client/charges";
5+
import { useGetProduct } from "@squonk/account-server-client/product";
56

67
import {
78
Box,

src/components/finance/UnitCharges.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { useState } from "react";
22

33
import { type UnitAllDetail, type UnitProductChargeSummary } from "@squonk/account-server-client";
4-
import { useGetUnit, useGetUnitCharges } from "@squonk/account-server-client/unit";
4+
import { useGetUnitCharges } from "@squonk/account-server-client/charges";
5+
import { useGetUnit } from "@squonk/account-server-client/unit";
56

67
import {
78
Box,

0 commit comments

Comments
 (0)