Skip to content

Commit

Permalink
feat: quick link tables (#486)
Browse files Browse the repository at this point in the history
# Pull Request type



Please check the type of change your PR introduces:

- [ ] Bugfix
- [x] Feature
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring (no functional changes, no API changes)
- [ ] Build-related changes
- [ ] Documentation content changes
- [ ] Other (please describe):

## What is the current behavior?



Issue Number: IN-873

## What is the new behavior?



-
-
-

## Does this introduce a breaking change?

- [ ] Yes
- [ ] No



## Other information




PR-URL: #486
Co-authored-by: Joe Karow <[email protected]>
  • Loading branch information
kodiakhq[bot] and JoeKarow authored May 18, 2023
2 parents bc28a38 + 3934f3a commit c1a8c9f
Show file tree
Hide file tree
Showing 34 changed files with 1,466 additions and 1,165 deletions.
3 changes: 3 additions & 0 deletions apps/app/nextjs-routes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ declare module "nextjs-routes" {
} from "nextjs";

export type Route =
| StaticRoute<"/admin/quicklink/email">
| StaticRoute<"/admin/quicklink">
| StaticRoute<"/admin/quicklink/phone">
| DynamicRoute<"/api/auth/[...nextauth]", { "nextauth": string[] }>
| StaticRoute<"/api/i18n/load">
| StaticRoute<"/api/i18n/webhook">
Expand Down
4 changes: 3 additions & 1 deletion apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"axios": "1.4.0",
"dayjs": "1.11.7",
"deepmerge": "4.3.1",
"duration-fns": "3.0.2",
"embla-carousel-autoplay": "7.1.0",
"embla-carousel-react": "7.1.0",
"i18next": "22.4.15",
Expand All @@ -76,6 +77,7 @@
"i18next-localstorage-backend": "4.1.1",
"i18next-multiload-backend-adapter": "2.2.0",
"ioredis": "5.3.2",
"just-compact": "3.2.0",
"luxon": "3.3.0",
"next": "13.4.2",
"next-auth": "4.22.1",
Expand All @@ -91,8 +93,8 @@
"@playwright/test": "1.33.0",
"@prisma/nextjs-monorepo-workaround-plugin": "4.14.0",
"@tanstack/react-query-devtools": "4.29.7",
"@tanstack/react-table-devtools": "8.7.6",
"@total-typescript/ts-reset": "0.4.2",
"@types/deepmerge": "2.2.0",
"@types/eslint": "8.37.0",
"@types/flat": "5.0.2",
"@types/luxon": "3.3.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/app/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const MyApp = (appProps: AppPropsWithGridSwitch) => {
<Footer />
<Notifications />
</ModalsProvider>
<ReactQueryDevtools initialIsOpen={false} />
<ReactQueryDevtools initialIsOpen={false} toggleButtonProps={{ style: { zIndex: 99998 } }} />
</MantineProvider>
</SessionProvider>
)
Expand Down
Loading

0 comments on commit c1a8c9f

Please sign in to comment.