Skip to content

Commit

Permalink
fix: typo in header (#578)
Browse files Browse the repository at this point in the history
* fix: typo in header

* tests
  • Loading branch information
matmut7 authored Sep 22, 2023
1 parent eb31f2b commit 324bb23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions __tests__/components/__snapshots__/header.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ exports[`when header renders does not show authenticated user if session is not
class="title"
>
<h1>
Secretariat
Secrétariat
</h1>
<p>
Gestion des comptes de la Fabrique Numérique
Expand Down Expand Up @@ -57,7 +57,7 @@ exports[`when header renders does show authenticated user if session is valid 1`
class="title"
>
<h1>
Secretariat
Secrétariat
</h1>
<p>
Gestion des comptes de la Fabrique Numérique
Expand Down
2 changes: 1 addition & 1 deletion __tests__/components/__snapshots__/layout.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ exports[`renders layout 1`] = `
class="title"
>
<h1>
Secretariat
Secrétariat
</h1>
<p>
Gestion des comptes de la Fabrique Numérique
Expand Down
2 changes: 1 addition & 1 deletion src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Header = () => {
<a>
<Logo />
<div className="title">
<h1>Secretariat</h1>
<h1>Secrétariat</h1>
<p>Gestion des comptes de la Fabrique Numérique</p>
</div>
</a>
Expand Down

0 comments on commit 324bb23

Please sign in to comment.