refactor(mobile): remove placeholder platform wrappers

This commit is contained in:
saravanakumardb1 2026-03-10 12:01:52 -07:00
parent b73d5e9a96
commit 86e2da88eb
2 changed files with 0 additions and 10 deletions

View File

@ -1,3 +0,0 @@
export function isReactNativePlatformSdkReady(): boolean {
return false;
}

View File

@ -1,7 +0,0 @@
type EventType = 'info' | 'warn' | 'error';
export function trackEvent(eventType: EventType, name: string, tags?: Record<string, string>): void {
void eventType;
void name;
void tags;
}