Skip to content

Commit

Permalink
fix : final free tier push
Browse files Browse the repository at this point in the history
  • Loading branch information
Atuldubey98 committed Mar 30, 2024
1 parent ccaed86 commit ab0fe93
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/src/features/common/table-layout/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function TableLayoutMemoized({
});
const navigate = useNavigate();
return (
<Stack spacing={4} marginTop={4}>
<Stack spacing={4}>
<Flex justifyContent={"space-between"} alignItems={"center"}>
<Flex justifyContent={"space-between"} gap={4} alignItems={"center"}>
<Icon
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/features/estimates/list/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default function EstimatesPage() {
const deleting = estimateStatus === "deleting";
return (
<MainLayout>
<Box p={5}>
<Box p={4}>
{loading ? (
<Flex justifyContent={"center"} alignItems={"center"}>
<Spinner size={"md"} />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/features/expenses/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default function ExpensesPage() {
const { symbol } = useCurrentOrgCurrency();
return (
<MainLayout>
<Box p={5}>
<Box p={4}>
{loading ? (
<Flex justifyContent={"center"} alignItems={"center"}>
<Spinner size={"md"} />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/features/invoices/list/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default function InvoicesPage() {
const downloading = invoiceStatus === "downloading";
return (
<MainLayout>
<Box p={5}>
<Box p={4}>
{loading ? (
<Flex justifyContent={"center"} alignItems={"center"}>
<Spinner size={"md"} />
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/features/parties/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function PartysPage() {
const navigate = useNavigate();
return (
<MainLayout>
<Box p={5}>
<Box p={4}>
{loading ? (
<Flex justifyContent={"center"} alignItems={"center"}>
<Spinner size={"md"} />
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/features/purchase/list/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function PurchasePage() {
const navigate = useNavigate();
const purchaseTableMapper = (purchase) => ({
partyName: purchase.party ? purchase.party.name : "",
billingAddress: purchase.party.billingAddress,
billingAddress: purchase?.billingAddress,
...purchase,
purchaseNo: transactionPrefixInvoice + purchase.purchaseNo,
date: new Date(purchase.date).toISOString().split("T")[0],
Expand Down Expand Up @@ -90,7 +90,7 @@ export default function PurchasePage() {

return (
<MainLayout>
<Box p={5}>
<Box p={4}>
{loading ? (
<Flex justifyContent={"center"} alignItems={"center"}>
<Spinner size={"md"} />
Expand Down

0 comments on commit ab0fe93

Please sign in to comment.