Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
Gugahnstn authored Oct 2, 2023
2 parents 547b78f + d957f08 commit 1fa0cbd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/templates/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ const Footer = () => {
<S.FooterTopComponent>
<img src={Logo} alt="Logo do Ipcats" />
<S.IconsComponent>
<S.Links>
<S.Links href="https://www.bohr.io">
<S.Icons src={ BohrLogo } alt="logo do bohr.io"/>
</S.Links>
<S.Links>
<S.Links href="https://www.github.com/Gugahnstn/Ipcats">
<S.Icons src={ GithubLogo } alt="logo do Github" />
</S.Links>
</S.IconsComponent>
Expand All @@ -25,4 +25,4 @@ const Footer = () => {
)
}

export default Footer
export default Footer;
2 changes: 1 addition & 1 deletion src/templates/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Header = () => {
<S.ContainerHeader>
<S.Image src={logo} />
<S.TextIp>
IP: <S.SpanTextIp>{ !query ? query : "000.000.000" }</S.SpanTextIp>
IP: <S.SpanTextIp>{ !query ? "000.000.000" : query }</S.SpanTextIp>
</S.TextIp>
</S.ContainerHeader>
</Container>
Expand Down

0 comments on commit 1fa0cbd

Please sign in to comment.