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:
Justin Hernandez
2025-08-14 13:55:32 -07:00
committed by GitHub
parent 368d233243
commit 0cf1bc830b
43 changed files with 127 additions and 146 deletions

View File

@@ -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 (

View File

@@ -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 (

View File

@@ -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 (