Skip to content

Commit f1b9551

Browse files
committed
fix: planex toolbar too high
bug introduced in 78e33f3
1 parent 0fcc136 commit f1b9551

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/components/Animations/PlanexBottomBar.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import React, { useState } from 'react';
2121
import { StyleSheet, View, Animated } from 'react-native';
2222
import { FAB, IconButton, Surface, useTheme } from 'react-native-paper';
2323
import * as Animatable from 'react-native-animatable';
24-
import { TAB_BAR_HEIGHT } from '../Tabbar/CustomTabBar';
2524
import { useNavigation } from '@react-navigation/core';
2625

2726
import { MainRoutes } from '../../navigation/MainNavigator';
@@ -112,7 +111,7 @@ function PlanexBottomBar(props: Props) {
112111
<Animated.View
113112
style={{
114113
...styles.container,
115-
bottom: 10 + TAB_BAR_HEIGHT,
114+
bottom: 10,
116115
transform: [{ translateY: translateY }, { scale: scale }],
117116
opacity: opacity,
118117
}}

0 commit comments

Comments
 (0)