Skip to content

Commit c282563

Browse files
authored
Merge pull request #61 from ishythefishy/remove-donate-link-in-header
Remove donate link in header
2 parents a4160b2 + e6273bb commit c282563

File tree

3 files changed

+0
-20
lines changed

3 files changed

+0
-20
lines changed

apps/fretonator-web/src/app/common/header/__snapshots__/header.component.spec.ts.snap

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -111,18 +111,6 @@ exports[`HeaderComponent should match snapshot 1`] = `
111111
Contact
112112
</a>
113113
</li>
114-
<li
115-
class="header__linksItem"
116-
>
117-
<a
118-
class="header__linksItemLink"
119-
href="https://www.buymeacoffee.com/fretonator"
120-
rel="nofollow noopener noreferrer"
121-
target="_blank"
122-
>
123-
Donate
124-
</a>
125-
</li>
126114
</ul>
127115
</header>
128116
</app-header>

apps/fretonator-web/src/app/common/header/header.component.html

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,5 @@
6363
>Contact</a
6464
>
6565
</li>
66-
<li class="header__linksItem">
67-
<a href="https://www.buymeacoffee.com/fretonator"
68-
rel="nofollow noopener noreferrer"
69-
class="header__linksItemLink"
70-
target="_blank">Donate</a>
71-
</li>
7266
</ul>
7367
</header>

apps/fretonator-web/src/app/common/header/header.component.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,13 @@ describe('HeaderComponent', () => {
6464
let learn: DebugElement;
6565
let about: DebugElement;
6666
let contact: DebugElement;
67-
let donate: DebugElement;
6867

6968
beforeEach(() => {
7069
const links = fixture.debugElement.queryAll(selectors.links);
7170
home = links[0];
7271
learn = links[1];
7372
about = links[2];
7473
contact = links[3];
75-
donate = links[3];
7674
});
7775

7876
it('Home should link to /', () => {

0 commit comments

Comments
 (0)