Skip to content

Commit

Permalink
chore: remove leftover code
Browse files Browse the repository at this point in the history
  • Loading branch information
Axelen123 authored and xafn committed Oct 24, 2022
1 parent 4feed99 commit 112b409
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions src/lib/components/molecules/ContributorHost.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,19 @@
let usersIwantToExplodeSoBadly = ['semantic-release-bot'];
</script>

{#if contribs}
<div class="container">
<a href="https://github.com/{repo}" rel="noreferrer" target="_blank">
<h2>{repo_name}</h2>
</a>
<div class="container">
<a href="https://github.com/{repo}" rel="noreferrer" target="_blank">
<h2>{repo_name}</h2>
</a>

<div class="contrib-host">
{#each contribs as contrib}
{#if !usersIwantToExplodeSoBadly.includes(contrib.login)}
<ContributorButton name={contrib.login} pfp={contrib.avatar_url} url={contrib.html_url} />
{/if}
{/each}
</div>
<div class="contrib-host">
{#each contribs as contrib}
{#if !usersIwantToExplodeSoBadly.includes(contrib.login)}
<ContributorButton name={contrib.login} pfp={contrib.avatar_url} url={contrib.html_url} />
{/if}
{/each}
</div>
{/if}
</div>

<style>
h2 {
Expand Down

1 comment on commit 112b409

@vercel
Copy link

@vercel vercel bot commented on 112b409 Oct 24, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

revanced-website – ./

dev.revanced.app
revanced-website-revanced.vercel.app
revanced-website-git-svelte-revanced.vercel.app

Please sign in to comment.