Skip to content

Commit

Permalink
#139 | fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
petmongrels committed Jul 31, 2023
1 parent dbe3dba commit f50fec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/FilterComponent/CodedConceptFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function CodedConceptFilter({ concepts, conceptCoded }: Prop) {
<div className="absolute right-0 mt-2 w-56 rounded-md shadow-lg bg-white ring-1 ring-black ring-opacity-5 focus:outline-none">
<div className="py-1">
{codedData &&
codedData.filter(x => !x.voided).map((option: { id: null | undefined; name: string }) => (
codedData.filter((x:any) => !x.voided).map((option: { id: null | undefined; name: string }) => (
<div key={option.id}>
<button
className={`flex text-start px-4 py-2 text-sm w-full ${
Expand Down

0 comments on commit f50fec5

Please sign in to comment.