lint fix
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { Pressable, useTheme } from 'native-base';
|
||||
import React, { useRef } from 'react';
|
||||
import { Animated, StyleSheet, StyleProp, ViewStyle } from 'react-native';
|
||||
import { Animated, StyleProp, ViewStyle } from 'react-native';
|
||||
|
||||
interface InteractiveBaseProps {
|
||||
children?: React.ReactNode;
|
||||
@@ -254,5 +254,4 @@ const InteractiveBase: React.FC<InteractiveBaseProps> = ({
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
export default InteractiveBase;
|
||||
|
||||
@@ -24,7 +24,12 @@ type ScaffoldCCProps = {
|
||||
enableScroll?: boolean;
|
||||
};
|
||||
|
||||
const ScaffoldCC = ({ children, routeName, withPadding = true, enableScroll = true }: ScaffoldCCProps) => {
|
||||
const ScaffoldCC = ({
|
||||
children,
|
||||
routeName,
|
||||
withPadding = true,
|
||||
enableScroll = true,
|
||||
}: ScaffoldCCProps) => {
|
||||
const userQuery = useQuery(API.getUserInfo);
|
||||
const screenSize = useBreakpointValue({ base: 'small', md: 'big' });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user