Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion specification/draft/apps.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ interface HostContext {
touch?: boolean;
hover?: boolean;
}
/** Mobile safe area boundaries in pixels */
/** Safe area boundaries in pixels */
safeAreaInsets?: {
top: number;
right: number;
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,8 @@ export interface McpUiHostContext {
hover?: boolean;
};
/**
* Mobile safe area boundaries in pixels.
* Used to avoid notches, rounded corners, and system UI on mobile devices.
* Safe area boundaries in pixels.
* Used to avoid notches, rounded corners, and system UI.
*/
safeAreaInsets?: {
/** Top safe area inset in pixels */
Expand Down