From ad495e2a49362ba585a1583ebf40cf65c1cdc9b6 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich <31292499+krystofwoldrich@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:48:36 +0200 Subject: [PATCH] fix: Remove unused `spanName` from `TimeToDisplayProps` (#4150) --- CHANGELOG.md | 1 + src/js/tracing/timetodisplay.tsx | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd806e15e..3101021e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Fixes - Emits Bridge log only in debug mode ([#4145](https://github.com/getsentry/sentry-react-native/pull/4145)) +- Remove unused `spanName` from `TimeToDisplayProps` ([#4150](https://github.com/getsentry/sentry-react-native/pull/4150)) ### Dependencies diff --git a/src/js/tracing/timetodisplay.tsx b/src/js/tracing/timetodisplay.tsx index 378ecfca5..12e68fd5b 100644 --- a/src/js/tracing/timetodisplay.tsx +++ b/src/js/tracing/timetodisplay.tsx @@ -21,7 +21,6 @@ const fullDisplayBeforeInitialDisplay = new WeakMap(); export type TimeToDisplayProps = { children?: React.ReactNode; - spanName?: string; record?: boolean; };