Skip to content

Commit

Permalink
bring back the icons
Browse files Browse the repository at this point in the history
  • Loading branch information
ichub committed Jul 25, 2024
1 parent 6b8dea5 commit 6ae441a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ export function HomeScreenImpl(): JSX.Element | null {
</>
)}
{loadedIssuedPCDs && (
<div className="text-center font-sm text-gray-300 mt-[0.75rem]">
<div className="text-center font-sm text-gray-300 mt-[0.75rem] select-none hover:underline cursor-pointer">
Don't see your tickets?
</div>
)}
Expand Down
12 changes: 6 additions & 6 deletions apps/passport-client/components/screens/HomeScreen/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ export const EVENTS: Record<string, EventInfo> = {
image:
"https://www.state.gov/wp-content/uploads/2023/07/shutterstock_671409553v2.jpg"
},
"Edge City": {
start: "2023-10-18",
end: "2023-10-21",
image:
"https://cdn.prod.website-files.com/65b2cb5abdecf7cd7747e170/65c139390d09b586db66b032_bg-image_v01.png"
},
// "Edge City": {
// start: "2023-10-18",
// end: "2023-10-21",
// image:
// "https://cdn.prod.website-files.com/65b2cb5abdecf7cd7747e170/65c139390d09b586db66b032_bg-image_v01.png"
// },
EthDenver: {
start: "2023-11-18",
end: "2023-11-21",
Expand Down
5 changes: 3 additions & 2 deletions apps/passport-client/components/shared/AppHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { useCallback } from "react";
import { FaCog, FaInfoCircle } from "react-icons/fa";
import styled from "styled-components";
import { useDispatch, useSelf, useSubscriptions } from "../../src/appHooks";
import { AppState } from "../../src/state";
Expand Down Expand Up @@ -82,7 +83,7 @@ function AppHeaderImpl({
)}
onClick={openInfo}
>
More Info
<FaInfoCircle size={24} />
</div>
<div
className={cn(
Expand All @@ -94,7 +95,7 @@ function AppHeaderImpl({
)}
onClick={openSettings}
>
Settings
<FaCog size={24} />
</div>
</div>
</AppHeaderWrap>
Expand Down

0 comments on commit 6ae441a

Please sign in to comment.