diff options
Diffstat (limited to 'src/screens/Profile/Sections/Labels.tsx')
-rw-r--r-- | src/screens/Profile/Sections/Labels.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screens/Profile/Sections/Labels.tsx b/src/screens/Profile/Sections/Labels.tsx index 08db4a861..2b2b99594 100644 --- a/src/screens/Profile/Sections/Labels.tsx +++ b/src/screens/Profile/Sections/Labels.tsx @@ -23,7 +23,7 @@ import {Loader} from '#/components/Loader' import {Divider} from '#/components/Divider' import {CenteredView, ScrollView} from '#/view/com/util/Views' import {ErrorState} from '../ErrorState' -import {ModerationLabelPref} from '#/components/moderation/ModerationLabelPref' +import {LabelerLabelPreference} from '#/components/moderation/LabelPreference' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' interface LabelsSectionProps { @@ -197,9 +197,9 @@ export function ProfileLabelsSectionInner({ return ( <React.Fragment key={labelDef.identifier}> {i !== 0 && <Divider />} - <ModerationLabelPref + <LabelerLabelPreference disabled={isSubscribed ? undefined : true} - labelValueDefinition={labelDef} + labelDefinition={labelDef} labelerDid={labelerInfo.creator.did} /> </React.Fragment> |