Drop the guidelines for now

This commit is contained in:
Paul Frazee
2024-01-16 16:05:33 -08:00
parent 81820479f3
commit c0771deb9b
2 changed files with 0 additions and 58 deletions
@@ -1,56 +0,0 @@
import React from 'react'
import {View} from 'react-native'
import {Text} from '../util/text/Text'
import {usePalette} from '#/lib/hooks/usePalette'
export function ModServiceGuidelines({}: {}) {
const pal = usePalette('default')
return (
<View testID="modServiceGuidelines">
<View
style={[
pal.border,
{paddingHorizontal: 14, paddingBottom: 8, borderBottomWidth: 1},
]}>
<Text type="2xl-bold">Guidelines</Text>
</View>
<View style={{paddingHorizontal: 14, paddingVertical: 8}}>
<Text type="lg" style={pal.text} lineHeight={1.4}>
These rules will evolve over time as we continually work to cultivate
a healthy and thriving community. Do not:
</Text>
<Text type="lg" style={pal.text} lineHeight={1.4}>
1. Praise or promote material from hate groups or U.S., Canadian, and
E.U. proscribed terror groups.
</Text>
<Text type="lg" style={pal.text} lineHeight={1.4}>
2. Distribute child sexual abuse material
</Text>
<Text type="lg" style={pal.text} lineHeight={1.4}>
3. Engage in human trafficking or sexual exploitation, including any
attempt to distribute, participate or normalize child sexual abuse
</Text>
<Text type="lg" style={pal.text} lineHeight={1.4}>
4. Trade in illegal goods or substances
</Text>
<Text type="lg" style={pal.text} lineHeight={1.4}>
5. Steal or distribute others private personal information without
their permission
</Text>
<Text type="lg" style={pal.text} lineHeight={1.4}>
6. Hack or access systems that you arent authorized to access
</Text>
<Text type="lg" style={pal.text} lineHeight={1.4}>
7. Scam or cheat others for financial gain h. Spam, phish, or
otherwise use technical means to disrupt the experience of others on
Bluesky Social
</Text>
<Text type="lg" style={pal.text} lineHeight={1.4}>
8. Infringe others copyrights, trademarks and/or other intellectual
property
</Text>
</View>
</View>
)
}
-2
View File
@@ -38,7 +38,6 @@ import {useSession} from '#/state/session'
import {useLikeMutation, useUnlikeMutation} from '#/state/queries/like'
import {ModServiceHeader} from '../com/moderation/ModServiceHeader'
import {sanitizeHandle} from '#/lib/strings/handles'
import {ModServiceGuidelines} from '../com/moderation/ModServiceGuidelines'
type Props = NativeStackScreenProps<CommonNavigatorParams, 'ProfileModservice'>
export function ProfileModserviceScreen(props: Props) {
@@ -257,7 +256,6 @@ export function ProfileModserviceScreenInner({
</View>
<ModServicePrefs />
<View style={{height: 20}} />
<ModServiceGuidelines />
</ScrollView>
</View>
)