Skip to content

Commit

Permalink
fix version display on help page
Browse files Browse the repository at this point in the history
  • Loading branch information
keckelt authored Feb 1, 2022
1 parent 3f4fb00 commit d862598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/components/SourceCodeCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {AppMetaDataUtils, useAsync} from 'tdp_core';

export function SourceCodeCard() {
const loadMetaData = React.useMemo(() => () => AppMetaDataUtils.getMetaData(), []);
const {status, value} = useAsync(loadMetaData);
const {status, value} = useAsync(loadMetaData, []);

return (
<>
Expand Down

0 comments on commit d862598

Please sign in to comment.