Skip to content

Commit f4960b8

Browse files
authored
ref(performance): Remove trace wrapper props (#96703)
both `ExploreContent` and `Content` do not take props. Remove "any"
1 parent 78b34ca commit f4960b8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

static/app/views/traces/content.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ const TRACE_EXPLORER_DOCS_URL = 'https://docs.sentry.io/product/explore/traces/'
3131
const DEFAULT_STATS_PERIOD = '24h';
3232
const DEFAULT_PER_PAGE = 50;
3333

34-
export default function Wrapper(props: any) {
34+
export default function Wrapper() {
3535
const location = useLocation();
3636
const organization = useOrganization();
3737

3838
if (
3939
location.query.view !== 'trace' &&
4040
organization.features.includes('visibility-explore-view')
4141
) {
42-
return <ExploreContent {...props} />;
42+
return <ExploreContent />;
4343
}
4444

45-
return <Content {...props} />;
45+
return <Content />;
4646
}
4747

4848
function Content() {

0 commit comments

Comments
 (0)