We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b61db commit aeb8f00Copy full SHA for aeb8f00
src/components/cards/Referral.tsx
@@ -1,5 +1,5 @@
1
import Avatar from "@/components/ui/Avatar";
2
-import { Referral } from "@/types/community";
+import { Referral as TReferral } from "@/types/community";
3
import RewardBadge from "../badges/RewardBadge";
4
import { useTranslation } from "next-i18next";
5
import { ReactElement } from "react";
@@ -15,7 +15,7 @@ import { useDispatch } from "@/hooks/useTypedDispatch";
15
*/
16
17
interface ReferralProps {
18
- referral: Referral;
+ referral: TReferral;
19
}
20
21
/**
0 commit comments