summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorPeter Johanson <peter@peterjohanson.com>2021-06-09 14:55:33 +0000
committerPete Johanson <peter@peterjohanson.com>2021-06-09 10:58:53 -0400
commitba45aaa81bd5c4d768e315ff57520738b6b59777 (patch)
tree7604292d1ed8787cc764b579c1688ed6735e9c95 /docs/src
parent22800455e21b31fdf79ab7568627e7ae9c2837ec (diff)
chore(docs): Bump prettier, and reformat w/ it.
* Bump to prettier 2.3.1. * Re-run prettier:format to apply updated format.
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/components/codes/Description.jsx3
-rw-r--r--docs/src/pages/power-profiler.js6
2 files changed, 4 insertions, 5 deletions
diff --git a/docs/src/components/codes/Description.jsx b/docs/src/components/codes/Description.jsx
index 6d8c5f6..7ad5fc2 100644
--- a/docs/src/components/codes/Description.jsx
+++ b/docs/src/components/codes/Description.jsx
@@ -7,7 +7,8 @@
import React from "react";
import PropTypes from "prop-types";
-const specialCharactersRegex = /(?:^|\s)((?:&(?:(?:\w+)|(?:#\d+));)|[_]|[^\w\s])(?:\s*\[([^[\]]+?)\])/g;
+const specialCharactersRegex =
+ /(?:^|\s)((?:&(?:(?:\w+)|(?:#\d+));)|[_]|[^\w\s])(?:\s*\[([^[\]]+?)\])/g;
function renderSpecialCharacters(description) {
const matches = Array.from(description.matchAll(specialCharactersRegex));
diff --git a/docs/src/pages/power-profiler.js b/docs/src/pages/power-profiler.js
index ca46f5c..fc803c5 100644
--- a/docs/src/pages/power-profiler.js
+++ b/docs/src/pages/power-profiler.js
@@ -30,10 +30,8 @@ function PowerProfiler() {
const { value: psuType, bind: bindPsuType } = useInput("");
const { value: outputV, bind: bindOutputV } = useInput(3.3);
const { value: quiescentMicroA, bind: bindQuiescentMicroA } = useInput(55);
- const {
- value: otherQuiescentMicroA,
- bind: bindOtherQuiescentMicroA,
- } = useInput(0);
+ const { value: otherQuiescentMicroA, bind: bindOtherQuiescentMicroA } =
+ useInput(0);
const { value: efficiency, bind: bindEfficiency } = useInput(0.9);
const { value: bondedQty, bind: bindBondedQty } = useInput(1);