Skip to content

Commit

Permalink
Rename type
Browse files Browse the repository at this point in the history
  • Loading branch information
MatissJanis committed Oct 5, 2024
1 parent f5be751 commit 112f8db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ export function NetWorth() {
return <NetWorthInner widget={widget} />;
}

type CashFlowInnerProps = {
type NetWorthInnerProps = {
widget?: NetWorthWidget;
};

function NetWorthInner({ widget }: CashFlowInnerProps) {
function NetWorthInner({ widget }: NetWorthInnerProps) {
const dispatch = useDispatch();
const { t } = useTranslation();

Expand Down

0 comments on commit 112f8db

Please sign in to comment.