Skip to content

Commit

Permalink
🎨 Update application metadata (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-tarczynski authored May 14, 2024
1 parent 5818c27 commit 46c1f9e
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
Binary file modified packages/frontend/public/favicon.ico
Binary file not shown.
1 change: 0 additions & 1 deletion packages/frontend/public/next.svg

This file was deleted.

1 change: 0 additions & 1 deletion packages/frontend/public/vercel.svg

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface UserScoreProps {
}

export const UserGitcoinScore = ({ userScore, gitcoinSettled, getBackToScoring }: UserScoreProps) => {
const isSufficientScore = userScore && userScore >= environment.gitcoinRequiredScore
const isSufficientScore = userScore !== undefined && userScore >= environment.gitcoinRequiredScore
return isSufficientScore ? (
<SufficientUserScore userScore={userScore} gitcoinSettled={gitcoinSettled} />
) : (
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export default function Home() {
return (
<>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<title>Devcon 7 Auction & Raffle</title>
<meta name="description" content="On-chain Auction & Raffle to sell a portion of Devcon tickets" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
Expand Down

0 comments on commit 46c1f9e

Please sign in to comment.