Skip to content

Commit

Permalink
Fix manage fonts page
Browse files Browse the repository at this point in the history
Adds missing import that is breaking the manage fonts page.

Reported here: https://wordpress.org/support/topic/manage-theme-fonts/#post-17247382
  • Loading branch information
Vicente Canales committed Dec 2, 2023
1 parent 6991c39 commit 87222a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fonts-sidebar/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { _n } from '@wordpress/i18n';
import { __, _n } from '@wordpress/i18n';
import { useEffect, useState } from '@wordpress/element';
import { bytesToSize, localizeFontStyle } from '../utils';
import './fonts-sidebar.css';
import { Button } from '@wordpress/components';
import { trash } from '@wordpress/icons';
import { bytesToSize, localizeFontStyle } from '../utils';
import './fonts-sidebar.css';

function FontsSidebar( {
title,
Expand Down

0 comments on commit 87222a1

Please sign in to comment.