File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,14 @@ import {ReactNode} from 'react';
33import { Alert } from './alert' ;
44
55export type VersionRequirementProps = {
6- product : string ; // e.g., "Logs for React Native"
7- sdk : string ; // e.g., "Sentry React Native SDK"
8- minVersion : string ; // e.g., "7.0.0-beta.1"
9- level ?: 'info' | 'warning' | 'success' ;
10- children ?: ReactNode ; // additional details, upgrade notes, links
6+ // e.g., "Sentry React Native SDK"
7+ minVersion : string ;
8+ product : string ;
9+ // e.g., "Logs for React Native"
10+ sdk : string ;
11+ children ?: ReactNode ;
12+ // e.g., "7.0.0-beta.1"
13+ level ?: 'info' | 'warning' | 'success' ; // additional details, upgrade notes, links
1114} ;
1215
1316/**
@@ -28,4 +31,4 @@ export function VersionRequirement({
2831 { children ? < div className = "mt-2" > { children } </ div > : null }
2932 </ Alert >
3033 ) ;
31- }
34+ }
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ import {SdkOption} from './components/sdkOption';
4343import { SignInNote } from './components/signInNote' ;
4444import { SmartLink } from './components/smartLink' ;
4545import { TableOfContents } from './components/tableOfContents' ;
46- import { VimeoEmbed } from './components/video' ;
4746import { VersionRequirement } from './components/version-requirement' ;
47+ import { VimeoEmbed } from './components/video' ;
4848
4949export function mdxComponents (
5050 dynamicComponents : any = { } ,
You can’t perform that action at this time.
0 commit comments