Skip to content

Commit

Permalink
Use x instead of twitter
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed Mar 1, 2024
1 parent d8c8a19 commit b9a5910
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/footer/footer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
<a href="https://t.me/foxypool" target="_blank" style="padding-left: 10px">
<fa-icon [icon]="faTelegram" class="fa highlight"></fa-icon>
</a>
<a href="https://twitter.com/foxypool" target="_blank" style="padding-left: 10px">
<fa-icon [icon]="faTwitter" class="fa highlight"></fa-icon>
<a href="https://x.com/foxypool" target="_blank" style="padding-left: 10px">
<fa-icon [icon]="faXTwitter" class="fa highlight"></fa-icon>
</a>
<a href="https://github.com/foxypool" target="_blank" style="padding-left: 10px">
<fa-icon [icon]="faGithub" class="fa highlight"></fa-icon>
Expand Down
4 changes: 2 additions & 2 deletions src/app/footer/footer.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component } from '@angular/core'
import {SnippetService} from '../snippet.service'
import {faDiscord, faGithub, faTelegram, faTwitter} from '@fortawesome/free-brands-svg-icons'
import {faDiscord, faGithub, faTelegram, faXTwitter} from '@fortawesome/free-brands-svg-icons'
import * as moment from 'moment'
import {PoolsProvider} from '../pools.provider'

Expand All @@ -14,7 +14,7 @@ export class FooterComponent {
public faDiscord = faDiscord
public faTelegram = faTelegram
public faGithub = faGithub
public faTwitter = faTwitter
public faXTwitter = faXTwitter

public currentYear: string = moment().format('YYYY')

Expand Down

0 comments on commit b9a5910

Please sign in to comment.