Skip to content

Commit

Permalink
Fixes formatting and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-telsan committed Apr 5, 2024
1 parent dbd841a commit 3228302
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { __ } from '@wordpress/i18n';
import { H1 } from '../../components/typography';
import { H1, P } from '../../components/typography';
import { PlanAndMonitor } from './plan-and-monitor';
import { Wrapper } from './wrapper';
import { SiteStatus } from './site-status';
Expand All @@ -17,7 +17,12 @@ export function Driver() {
<Wrapper>
<div className="flex max-w-2xl flex-col items-start gap-4">
<H1>{__('Site Setup', 'goodbids')}</H1>
<P>{_('Please note: The Setup Guide is an online instructional manual. The box titled “Site Status” (on the top right) is the only section that will update based on your progress through the guide. The Site Status will update to reflect the current status of your Nonprofit Site, and will either read “Pending” or “Live,” along with information relevant to that status level.', 'goodbids')}</P>
<P>
{__(
'Please note: The Setup Guide is an online instructional manual. The box titled “Site Status” (on the top right) is the only section that will update based on your progress through the guide. The Site Status will update to reflect the current status of your Nonprofit Site, and will either read “Pending” or “Live,” along with information relevant to that status level.',
'goodbids',
)}
</P>
{(gbNonprofitSetupGuide.isBDPAdmin ||
gbNonprofitSetupGuide.isAdmin) && (
<>
Expand Down

0 comments on commit 3228302

Please sign in to comment.