frontend client for gemstone. decentralised workplace app

chore: formatting

serenity 8f1c47df 246027f9

Changed files
+2 -4
src
components
Profile
primitives
+1 -3
src/components/Profile/Name.tsx
···
<Text>:(</Text>
) : (
profile && (
-
<Text
-
style={typography.weights.byName.normal}
-
>
{profile.displayName ?? profile.handle}
</Text>
)
···
<Text>:(</Text>
) : (
profile && (
+
<Text style={typography.weights.byName.normal}>
{profile.displayName ?? profile.handle}
</Text>
)
+1 -1
src/components/primitives/Loading.tsx
···
import { ActivityIndicator, View } from "react-native";
export const Loading = ({ color }: { color?: HexCode }) => {
-
const { semantic } = useCurrentPalette()
return (
<View>
<ActivityIndicator size="large" color={color ?? semantic.primary} />
···
import { ActivityIndicator, View } from "react-native";
export const Loading = ({ color }: { color?: HexCode }) => {
+
const { semantic } = useCurrentPalette();
return (
<View>
<ActivityIndicator size="large" color={color ?? semantic.primary} />