diff --git a/rust/scenario_runner/src/frontend_mock.rs b/rust/scenario_runner/src/frontend_mock.rs index 55d6403..c108972 100644 --- a/rust/scenario_runner/src/frontend_mock.rs +++ b/rust/scenario_runner/src/frontend_mock.rs @@ -160,7 +160,7 @@ async fn request_loop( | UiRequestData::SetTheme { .. } => { unreachable!() } - UiRequestData::SetGlobalShortcut { .. } | UiRequestData::RequestSearchResultUpdate => { + UiRequestData::SetGlobalShortcut { .. } | UiRequestData::SetWindowPositionMode { .. } | UiRequestData::RequestSearchResultUpdate => { // noop } UiRequestData::ReplaceView { diff --git a/scenarios/plugins/docs_grid/src/content_code_block.tsx b/scenarios/plugins/docs_grid/src/content_code_block.tsx index 6e793e9..3127d08 100644 --- a/scenarios/plugins/docs_grid/src/content_code_block.tsx +++ b/scenarios/plugins/docs_grid/src/content_code_block.tsx @@ -14,7 +14,7 @@ export default function Main(): ReactElement { return ( {items.map(value => ( - + {value} diff --git a/scenarios/plugins/docs_grid/src/content_headers.tsx b/scenarios/plugins/docs_grid/src/content_headers.tsx index 1c9b0c7..db65312 100644 --- a/scenarios/plugins/docs_grid/src/content_headers.tsx +++ b/scenarios/plugins/docs_grid/src/content_headers.tsx @@ -4,42 +4,42 @@ import { Grid } from "@project-gauntlet/api/components"; export default function Main(): ReactElement { return ( - + Episode I - + Episode II - + Episode III - + Episode IV - + Episode V - + Episode VI diff --git a/scenarios/plugins/docs_grid/src/content_image.tsx b/scenarios/plugins/docs_grid/src/content_image.tsx index e5a50ac..60e0ac0 100644 --- a/scenarios/plugins/docs_grid/src/content_image.tsx +++ b/scenarios/plugins/docs_grid/src/content_image.tsx @@ -36,7 +36,7 @@ export default function Main(): ReactElement { return ( {items.map(value => ( - + diff --git a/scenarios/plugins/docs_grid/src/content_paragraph.tsx b/scenarios/plugins/docs_grid/src/content_paragraph.tsx index 3c4a339..44d76f4 100644 --- a/scenarios/plugins/docs_grid/src/content_paragraph.tsx +++ b/scenarios/plugins/docs_grid/src/content_paragraph.tsx @@ -14,7 +14,7 @@ export default function Main(): ReactElement { return ( {items.map(value => ( - + {value} diff --git a/scenarios/plugins/docs_grid/src/main.tsx b/scenarios/plugins/docs_grid/src/main.tsx index e5a50ac..60e0ac0 100644 --- a/scenarios/plugins/docs_grid/src/main.tsx +++ b/scenarios/plugins/docs_grid/src/main.tsx @@ -36,7 +36,7 @@ export default function Main(): ReactElement { return ( {items.map(value => ( - + diff --git a/scenarios/plugins/docs_grid/src/search_bar.tsx b/scenarios/plugins/docs_grid/src/search_bar.tsx index ca19caa..ce67753 100644 --- a/scenarios/plugins/docs_grid/src/search_bar.tsx +++ b/scenarios/plugins/docs_grid/src/search_bar.tsx @@ -23,7 +23,7 @@ export default function Main(): ReactElement { {results .filter(value => !searchText ? true : value.toLowerCase().includes(searchText)) .map(value => ( - + {value} diff --git a/scenarios/plugins/docs_grid/src/section.tsx b/scenarios/plugins/docs_grid/src/section.tsx index 55e79ab..2d0ab75 100644 --- a/scenarios/plugins/docs_grid/src/section.tsx +++ b/scenarios/plugins/docs_grid/src/section.tsx @@ -18,59 +18,59 @@ export default function Main(): ReactElement { return ( - + - + - + - + - + - + - + - + - + - + - + diff --git a/scenarios/plugins/docs_list/src/detail.tsx b/scenarios/plugins/docs_list/src/detail.tsx index d5d5854..72d6a6b 100644 --- a/scenarios/plugins/docs_list/src/detail.tsx +++ b/scenarios/plugins/docs_list/src/detail.tsx @@ -4,16 +4,16 @@ import { List } from "@project-gauntlet/api/components"; export default function Main(): ReactElement { return ( - - - - - - - - - - + + + + + + + + + + Sentient diff --git a/scenarios/plugins/docs_list/src/main.tsx b/scenarios/plugins/docs_list/src/main.tsx index 6bdafeb..6458e49 100644 --- a/scenarios/plugins/docs_list/src/main.tsx +++ b/scenarios/plugins/docs_list/src/main.tsx @@ -4,16 +4,16 @@ import { List } from "@project-gauntlet/api/components"; export default function Main(): ReactElement { return ( - - - - - - - - - - + + + + + + + + + + ) } diff --git a/scenarios/plugins/docs_list/src/search_bar.tsx b/scenarios/plugins/docs_list/src/search_bar.tsx index 618f476..a57aeda 100644 --- a/scenarios/plugins/docs_list/src/search_bar.tsx +++ b/scenarios/plugins/docs_list/src/search_bar.tsx @@ -23,7 +23,7 @@ export default function Main(): ReactElement { {results .filter(value => !searchText ? true : value.toLowerCase().includes(searchText)) .map(value => ( - + )) } diff --git a/scenarios/plugins/docs_list/src/section.tsx b/scenarios/plugins/docs_list/src/section.tsx index 3d9db2b..9f23846 100644 --- a/scenarios/plugins/docs_list/src/section.tsx +++ b/scenarios/plugins/docs_list/src/section.tsx @@ -4,17 +4,17 @@ import { List } from "@project-gauntlet/api/components"; export default function Main(): ReactElement { return ( - + - - - + + + - - - - + + + + )