Skip to content

Commit

Permalink
fix: truncated column headers (#1319)
Browse files Browse the repository at this point in the history
Closes #1318 

Fixes bug in font pre-loading created in [previous
PR](#1180)
  • Loading branch information
ethanalvizo authored May 24, 2023
1 parent 7bcf326 commit db7716e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-utils/src/components/FontBootstrap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export type FontBootstrapProps = {
* FontBootstrap component. Handles preloading fonts.
*/
export function FontBootstrap({
fontClassNames = ['fira-sans-regular', 'fira-sans-bold', 'fira-mono'],
fontClassNames = ['fira-sans-regular', 'fira-sans-semibold', 'fira-mono'],
children,
}: FontBootstrapProps) {
const [isLoaded, setIsLoaded] = useState(false);
Expand Down

0 comments on commit db7716e

Please sign in to comment.