Skip to content

Commit

Permalink
tiny fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nabalone committed Nov 20, 2024
1 parent 5168a3d commit 80e68c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const LanguageChooserDialog: React.FunctionComponent<
initialSelection || ({} as IOrthography)
);
const [pendingLanguageTag, setPendingLanguageTag] = React.useState(
languageChooserProps.initialSelectionLanguageTag || "" // TODO is this right?
languageChooserProps.initialSelectionLanguageTag || ""
);
function onSelectionChange(
orthographyInfo: IOrthography | undefined,
Expand Down Expand Up @@ -102,7 +102,7 @@ export const LanguageChooserDialog: React.FunctionComponent<
`}
>
<div
id="lang-chooser"
id="lang-chooser-dialog-content"
css={css`
width: 100%;
height: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export type { ILanguage, IScript, IRegion } from "@ethnolib/find-language";
export {
isUnlistedLanguage,
createTagFromOrthography,
parseLangtagFromLangChooser,
} from "@ethnolib/language-chooser-react-hook";
export type {
IOrthography,
Expand Down

0 comments on commit 80e68c2

Please sign in to comment.