mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
chore: trim lint warnings and ignore dev paths (#897)
* chore: trim lint warnings and ignore dev paths * fix: restore navigation param types * fixes * fixes * tweaks and cr feedback * final improvements * fix nav types
This commit is contained in:
@@ -8,7 +8,7 @@ import { shouldShowAesopRedesign } from '@/hooks/useAesopRedesign';
|
||||
import { slate400 } from '@/utils/colors';
|
||||
import { dinot } from '@/utils/fonts';
|
||||
|
||||
interface AdditionalProps extends TextProps {}
|
||||
type AdditionalProps = TextProps;
|
||||
|
||||
const Additional = ({ children, style, ...props }: AdditionalProps) => {
|
||||
return (
|
||||
|
||||
@@ -7,7 +7,7 @@ import { StyleSheet, Text } from 'react-native';
|
||||
import { slate700 } from '@/utils/colors';
|
||||
import { dinot } from '@/utils/fonts';
|
||||
|
||||
interface CautionProps extends TextProps {}
|
||||
type CautionProps = TextProps;
|
||||
|
||||
const Caution = ({ children, style, ...props }: CautionProps) => {
|
||||
return (
|
||||
|
||||
@@ -9,7 +9,7 @@ import { shouldShowAesopRedesign } from '@/hooks/useAesopRedesign';
|
||||
import { slate500 } from '@/utils/colors';
|
||||
import { dinot } from '@/utils/fonts';
|
||||
|
||||
interface DescriptionProps extends TextProps {}
|
||||
type DescriptionProps = TextProps;
|
||||
|
||||
const Description = ({ children, style, ...props }: DescriptionProps) => {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user