Skip to content

Commit

Permalink
fix type compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Jiang authored and Andrew Jiang committed Jan 15, 2025
1 parent 658789b commit 8c656f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/fern-docs/bundle/src/server/ld-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ interface LaunchDarklyInfo {
defaultFlags: Record<string, unknown> | undefined;
options:
| {
baseUrl?: string;
streamUrl?: string;
eventsUrl?: string;
baseUrl: string | undefined;
streamUrl: string | undefined;
eventsUrl: string | undefined;
}
| undefined;
}
Expand Down

0 comments on commit 8c656f1

Please sign in to comment.