diff --git a/packages/react/components/Account/Apikeys.mjs b/packages/react/components/Account/Apikeys.mjs index 77a16f6c87c..c6b02dc3ff3 100644 --- a/packages/react/components/Account/Apikeys.mjs +++ b/packages/react/components/Account/Apikeys.mjs @@ -313,7 +313,7 @@ const ShowNewApikey = ({ apikey }) => (
{apikey.secret}
- + This is the only time you can see the key secret, make sure to copy it. diff --git a/packages/react/components/Account/Email.mjs b/packages/react/components/Account/Email.mjs index 7d027132e88..2d2460402e0 100644 --- a/packages/react/components/Account/Email.mjs +++ b/packages/react/components/Account/Email.mjs @@ -55,7 +55,7 @@ export const Email = ({ welcome = false, Link = false }) => { return (
{changed ? ( - +

Please confirm this change

We have sent an E-mail to your new address to confirm this change. Please click the link diff --git a/packages/react/components/Account/Export.mjs b/packages/react/components/Account/Export.mjs index 04e5ea14de0..d8245adde43 100644 --- a/packages/react/components/Account/Export.mjs +++ b/packages/react/components/Account/Export.mjs @@ -39,7 +39,7 @@ export const Export = () => { return (

{link ? ( - +
Your data was exported and is available for download at the following location:

{link} diff --git a/packages/react/components/Account/Import.mjs b/packages/react/components/Account/Import.mjs index 0872450be95..b320537fd72 100644 --- a/packages/react/components/Account/Import.mjs +++ b/packages/react/components/Account/Import.mjs @@ -76,7 +76,7 @@ export const ImportSet = () => { multiple: false, }} /> - +

To import a measurement set, you should have a JSON or YAML file that has the following structure: diff --git a/packages/react/components/Account/Mfa.mjs b/packages/react/components/Account/Mfa.mjs index d1f85527d4a..a1dc75e8944 100644 --- a/packages/react/components/Account/Mfa.mjs +++ b/packages/react/components/Account/Mfa.mjs @@ -200,7 +200,7 @@ export const Mfa = ({ title = true }) => { Set up Mult-Factor Authentication - +

Please consider enabling Two-Factor Authentication

We do not enforce a password policy, but we do recommend you enable Multi-Factor diff --git a/packages/react/components/Account/Newsletter.mjs b/packages/react/components/Account/Newsletter.mjs index b04269fea92..f9aabcaa3bf 100644 --- a/packages/react/components/Account/Newsletter.mjs +++ b/packages/react/components/Account/Newsletter.mjs @@ -111,7 +111,7 @@ export const Newsletter = ({ welcome = false, Link = false }) => { ) : null} {welcome ? null : ( - +

You can unsubscribe at any time with the link below

This unsubscribe link will also be included at the bottom of every newsletter we send diff --git a/packages/react/components/Account/Password.mjs b/packages/react/components/Account/Password.mjs index 7b9084db225..5627573d73d 100644 --- a/packages/react/components/Account/Password.mjs +++ b/packages/react/components/Account/Password.mjs @@ -63,7 +63,7 @@ export const Password = ({ welcome = false, Link = false }) => { Save {!account.mfaEnabled && ( - +

Please consider enabling Two-Factor Authentication

We do not enforce a password policy, but we do recommend you enable Two-Factor diff --git a/packages/react/components/Account/Pattern.mjs b/packages/react/components/Account/Pattern.mjs index 19bceffb5d1..48dc9d9296f 100644 --- a/packages/react/components/Account/Pattern.mjs +++ b/packages/react/components/Account/Pattern.mjs @@ -146,7 +146,7 @@ export const Pattern = ({ id, Link }) => { return (

{pattern.public ? ( - +
This is the private view of your pattern

Everyone can access the public view since this is a public pattern. diff --git a/packages/react/components/Account/Set.mjs b/packages/react/components/Account/Set.mjs index 1e243170fb2..b45cfcffd97 100644 --- a/packages/react/components/Account/Set.mjs +++ b/packages/react/components/Account/Set.mjs @@ -748,7 +748,7 @@ const SuggestCset = ({ mset, Link }) => { Notes

If you would like to add any notes, you can do so here.

- + This field supports markdown true} /> diff --git a/packages/react/components/Editor/components/Set.mjs b/packages/react/components/Editor/components/Set.mjs index 8ab87cc0fc6..1a347d7e962 100644 --- a/packages/react/components/Editor/components/Set.mjs +++ b/packages/react/components/Editor/components/Set.mjs @@ -47,7 +47,7 @@ export const UserSetPicker = ({ if (!hasSets) return (
- +
You do not (yet) have any of your own measurements sets

You can store your measurements as a measurements set, after which you can generate as @@ -88,7 +88,7 @@ export const UserSetPicker = ({ )} {lackingSets.length > 0 ? (

- +
Some of your measurements sets lack the measurements required to generate this pattern
@@ -174,7 +174,7 @@ export const BookmarkedSetPicker = ({ )} {lackingSets.length > 0 && (
- +
Some of these measurements sets lack the measurements required to generate this pattern diff --git a/packages/react/components/Editor/components/views/DocsView.mjs b/packages/react/components/Editor/components/views/DocsView.mjs index 19750c43fb0..b0e4c26d2ce 100644 --- a/packages/react/components/Editor/components/views/DocsView.mjs +++ b/packages/react/components/Editor/components/views/DocsView.mjs @@ -22,7 +22,7 @@ export const DocsView = ({ state, config, update }) => {

Documentation

{state?.design ? ( - +
Design Documentation

You can find documentation for the {capitalize(state.design)} design at: @@ -36,7 +36,7 @@ export const DocsView = ({ state, config, update }) => {

) : null} - +
Understanding the FreeSewing Pattern Editor

Please refer to the pattern editor documentation at: @@ -49,7 +49,7 @@ export const DocsView = ({ state, config, update }) => {

- +
Looking for info on how it really works?
diff --git a/packages/react/components/Editor/components/views/DraftErrorHandler.mjs b/packages/react/components/Editor/components/views/DraftErrorHandler.mjs index 93a3d33bed4..54000089bf5 100644 --- a/packages/react/components/Editor/components/views/DraftErrorHandler.mjs +++ b/packages/react/components/Editor/components/views/DraftErrorHandler.mjs @@ -14,7 +14,7 @@ export const DraftErrorHandler = ({ failure, errors }) => { } return ( - +

Sorry, there were problems drafting your pattern with the given measurements and options.

diff --git a/packages/react/components/Editor/components/views/MeasurementsView.mjs b/packages/react/components/Editor/components/views/MeasurementsView.mjs index df84fb836da..1f736a1137d 100644 --- a/packages/react/components/Editor/components/views/MeasurementsView.mjs +++ b/packages/react/components/Editor/components/views/MeasurementsView.mjs @@ -183,7 +183,7 @@ export const MeasurementsView = ({

Measurements

{missingMeasurements && missingMeasurements.length > 0 ? ( - +

To generate this pattern, we need {missingMeasurements.length} additional measurement {missingMeasurements.length === 1 ? '' : 's'}: @@ -198,7 +198,7 @@ export const MeasurementsView = ({ ) : ( - +
We have all required measurements to draft this pattern