Skip to content

Commit

Permalink
Add option to query by member name
Browse files Browse the repository at this point in the history
  • Loading branch information
WillNilges committed Dec 10, 2024
1 parent b0394a9 commit ea8dd74
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/QueryForm/QueryForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const options = [
{ value: "network_number", label: "Network Number (NN)" },
{ value: "install_number", label: "Install Number (#)" },
{ value: "bin", label: "BIN" },
{ value: "name", label: "Member Name" },
];

import { AgGridReact } from "ag-grid-react"; // React Grid Logic
Expand Down Expand Up @@ -67,6 +68,7 @@ export function QueryForm() {

switch (queryForm.query_type) {
case "email_address":
case "name":
route = "members";
break;
case "street_address":
Expand Down

0 comments on commit ea8dd74

Please sign in to comment.