We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60dce54 commit 10984f5Copy full SHA for 10984f5
packages/documentation/src/components/Phone/DefaultAppBar.tsx
@@ -10,12 +10,12 @@ import PhoneAppBar from "./PhoneAppBar";
10
import SearchAction from "./SearchAction";
11
12
export default function DefaultPhoneAppBar(): ReactElement {
13
- const { title } = usePhoneContext();
+ const { title, id } = usePhoneContext();
14
return (
15
<PhoneAppBar>
16
<AppBar component="div" theme="clear">
17
<ClosePhone />
18
- <AppBarTitle>{title}</AppBarTitle>
+ <AppBarTitle id={`${id}-title`}>{title}</AppBarTitle>
19
<SearchAction />
20
<OptionsAction />
21
</AppBar>
0 commit comments