8000 Dashboard item quantity changes by BilalG1 · Pull Request #936 · stack-auth/stack-auth · GitHub
[go: up one dir, main page]

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import PageClient from "./page-client";

export const metadata = {
title: "Item Quantities",
};

export default function Page() {
return <PageClient />;
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { Fragment, useEffect, useId, useMemo, useRef, useState } from "react";
import { IllustratedInfo } from "../../../../../../../components/illustrated-info";
import { PageLayout } from "../../page-layout";
import { useAdminApp } from "../../use-admin-app";
import { ItemDialog } from "./item-dialog";
import { ItemDialog } from "@/components/payments/item-dialog";
import { ProductDialog } from "./product-dialog";

type Product = CompleteConfig['payments']['products'][keyof CompleteConfig['payments']['products']];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import React, { ReactNode, useEffect, useId, useMemo, useRef, useState } from "r
import { IllustratedInfo } from "../../../../../../../components/illustrated-info";
import { PageLayout } from "../../page-layout";
import { useAdminApp } from "../../use-admin-app";
import { ItemDialog } from "./item-dialog";
import { ItemDialog } from "@/components/payments/item-dialog";
import { ListSection } from "./list-section";
import { ProductDialog } from "./product-dialog";

Expand Down
Original file line number Diff line number Diff line change Expand Up @@ -35,6 +35,7 @@ import { Mail, Menu, Palette, Package, Receipt, Settings, Settings2, Expand Down Expand Up @@ -253,6 +254,13 @@ const navigationItems: (Label | Item | Hidden)[] = [ icon: CreditCard, type: 'item', }, { name: "Items", href: "/items", regex: /^\/projects\/[^\/]+\/items$/, icon: Package, type: 'item', }, { name: "Transactions", href: "/payments/transactions", Expand Down
Loading
0