From 085e3f38397d845faa2c73cdfbbdcfc31873be07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Espino=20Garc=C3=ADa?= Date: Fri, 23 May 2025 13:05:31 +0200 Subject: [PATCH] Fix scheduled messages tooltip entering an infinite resize loop (#8877) --- app/constants/tooltip.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/constants/tooltip.ts b/app/constants/tooltip.ts index f0f3fbe23..d9ea7333c 100644 --- a/app/constants/tooltip.ts +++ b/app/constants/tooltip.ts @@ -6,8 +6,8 @@ import {StyleSheet} from 'react-native'; export const staticStyles = StyleSheet.create({ tooltipContent: { borderRadius: 8, - width: 247, + maxWidth: 247, padding: 16, - height: 160, + maxHeight: 160, }, });