From 7f8530cbfa2f39b5f633189e4c8c26529221b22e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 9 Apr 2023 17:52:03 -0700 Subject: [PATCH] Fix build errors --- components/PartyDetails/index.tsx | 1 + components/Slider/index.tsx | 2 ++ 2 files changed, 3 insertions(+) diff --git a/components/PartyDetails/index.tsx b/components/PartyDetails/index.tsx index 8f6d0811..6b2d914e 100644 --- a/components/PartyDetails/index.tsx +++ b/components/PartyDetails/index.tsx @@ -480,6 +480,7 @@ const PartyDetails = (props: Props) => { user={party.user} favorited={party.favorited} fullAuto={party.full_auto} + autoGuard={party.auto_guard} key={`party-${i}`} displayUser={true} onClick={goTo} diff --git a/components/Slider/index.tsx b/components/Slider/index.tsx index 6bab8a88..0d4d3651 100644 --- a/components/Slider/index.tsx +++ b/components/Slider/index.tsx @@ -27,4 +27,6 @@ const Slider = React.forwardRef( } ) +Slider.displayName = 'Slider' + export default Slider