Skip to content

Commit

Permalink
fix: user invite search
Browse files Browse the repository at this point in the history
  • Loading branch information
fPolic committed Nov 7, 2024
1 parent 1a0882c commit 84bda1f
Show file tree
Hide file tree
Showing 2 changed files with 291 additions and 287 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import {
} from "../../../../../hooks/api/invites"
import { useUserInviteTableQuery } from "../../../../../hooks/table/query/use-user-invite-table-query"
import { useDataTable } from "../../../../../hooks/use-data-table"
import { isFetchError } from "../../../../../lib/is-fetch-error.ts"
import { isFetchError } from "../../../../../lib/is-fetch-error"

const InviteUserSchema = zod.object({
email: zod.string().email(),
Expand Down Expand Up @@ -168,6 +168,7 @@ export const InviteUserForm = () => {
search="autofocus"
isLoading={isLoading}
queryObject={raw}
prefix={PREFIX}
orderBy={[
{ key: "email", label: t("fields.email") },
{ key: "created_at", label: t("fields.createdAt") },
Expand Down
Loading

0 comments on commit 84bda1f

Please sign in to comment.