Skip to content

Commit

Permalink
Merge pull request #1652 from hackforla/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
sydneywalcoff authored Nov 18, 2024
2 parents 48803f4 + d1ac160 commit 199ef77
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion products/statement-generator/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ import ScrollToTop from './components-layout/ScrollToTop';
export const LocationDisplay = () => {
const location = useLocation();

return <div data-testid="location-display">{location.pathname}</div>;
return (
<div data-testid="location-display" style={{ display: 'none' }}>
{location.pathname}{' '}
</div>
);
};

const App: React.FC = () => {
Expand Down

0 comments on commit 199ef77

Please sign in to comment.