Skip to content

Commit

Permalink
🐞 Fix: Ex - Types
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Mar 3, 2023
1 parent b3d30fd commit 219414c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/src/components/ObjectPropertyDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function ObjectPropertyDisplay<T extends Object>(props: {
const objectKeys = (hasObject
? Object.keys(props.object)
: []
) as Array<keyof T>;
) as Array<keyof object>;

return hasObject? (
<View style={[
Expand Down

0 comments on commit 219414c

Please sign in to comment.