Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🪟 🐛 🚨 Fixed failed master build #18610

Merged
merged 1 commit into from
Oct 28, 2022
Merged
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
fixed failed build
  • Loading branch information
dizel852 committed Oct 28, 2022

Verified

This commit was signed with the committer’s verified signature.
zyxkad Kevin Z
commit fbe4811e7002e2f9c3e2885b61e023bbfdc6ecfa
Original file line number Diff line number Diff line change
@@ -7,6 +7,7 @@ import { Text } from "components/ui/Text";

import { useConnectorBuilderState } from "services/connectorBuilder/ConnectorBuilderStateService";

import { Heading } from "../ui/Heading";
import styles from "./StreamSelector.module.scss";

export const StreamSelector: React.FC = () => {
@@ -15,9 +16,9 @@ export const StreamSelector: React.FC = () => {
return (
<Listbox value={selectedStream.name} onChange={setSelectedStream}>
<Listbox.Button className={classNames(styles.button, styles.centered)}>
<Text className={styles.capitalized} as="h1" size="sm">
<Heading className={styles.capitalized} as="h1" size="sm">
{selectedStream.name}
</Text>
</Heading>
<FontAwesomeIcon className={styles.arrow} icon={faSortDown} />
</Listbox.Button>
{/* wrap in div to make `position: absolute` on Listbox.Options result in correct vertical positioning */}