We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78b34ca commit f4960b8Copy full SHA for f4960b8
static/app/views/traces/content.tsx
@@ -31,18 +31,18 @@ const TRACE_EXPLORER_DOCS_URL = 'https://docs.sentry.io/product/explore/traces/'
31
const DEFAULT_STATS_PERIOD = '24h';
32
const DEFAULT_PER_PAGE = 50;
33
34
-export default function Wrapper(props: any) {
+export default function Wrapper() {
35
const location = useLocation();
36
const organization = useOrganization();
37
38
if (
39
location.query.view !== 'trace' &&
40
organization.features.includes('visibility-explore-view')
41
) {
42
- return <ExploreContent {...props} />;
+ return <ExploreContent />;
43
}
44
45
- return <Content {...props} />;
+ return <Content />;
46
47
48
function Content() {
0 commit comments