Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieraykatz committed Nov 11, 2024
1 parent 4102017 commit 2efef3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const DISCOUNT_ITEMS: DiscountItem[] = [
},
{
discount: Discount.DEVCON,
icon: DevconPNG as StaticImageData,
icon: DevconPNG,
alt: 'icon of Devcon',
label: 'Devcon attendance NFT',
tooltipContent: 'Available for anyone holding one of the Base Devcon NFTs',
Expand Down
3 changes: 2 additions & 1 deletion apps/web/src/hooks/useAggregatedDiscountValidators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ export function useAggregatedDiscountValidators(code?: string) {
loadingBNS ||
loadingDiscountCode ||
loadingTalentProtocolAttestations ||
loadingBaseWorld;
loadingBaseWorld ||
loadingDevcon;

const discountsToAttestationData = useMemo<MappedDiscountData>(() => {
const discountMapping: MappedDiscountData = {};
Expand Down

0 comments on commit 2efef3a

Please sign in to comment.