From a54dad9b1d51e9ead441f69a4b17554cb352a2e8 Mon Sep 17 00:00:00 2001 From: Lisa Hillebrand Date: Fri, 30 Sep 2022 16:01:40 +0200 Subject: [PATCH] 618 Remove unused constants --- config.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config.js b/config.js index 7b4fa8e..d7db960 100644 --- a/config.js +++ b/config.js @@ -1,10 +1,6 @@ import { PixelRatio, StatusBar } from 'react-native' import { scale, verticalScale } from 'react-native-size-matters' -export const ACTION_DELETE = 'delete' -export const ACTION_EXPORT = 'export' -export const ACTION_IMPORT = 'import' - export const SYMPTOMS = [ 'bleeding', 'temperature', @@ -40,7 +36,7 @@ export const HIT_SLOP = { top: verticalScale(20), bottom: verticalScale(20), left: scale(20), - right: scale(20) + right: scale(20), } export const STATUSBAR_HEIGHT = StatusBar.currentHeight