diff --git a/designs/ursula/src/back2.js b/designs/ursula/src/back2.js
index 0cc97d4757c..de3bec23bd6 100644
--- a/designs/ursula/src/back2.js
+++ b/designs/ursula/src/back2.js
@@ -5,7 +5,6 @@ export default function (part) {
Snippet,
snippets,
store,
- utils,
} = part.shorthand()
points.waist2 = points.backWaistBandMid
diff --git a/sites/dev/components/layouts/docs.js b/sites/dev/components/layouts/docs.js
index f20c0b1ec26..f1a2d7c0516 100644
--- a/sites/dev/components/layouts/docs.js
+++ b/sites/dev/components/layouts/docs.js
@@ -1,5 +1,4 @@
import { useRouter } from 'next/router'
-import Link from 'next/link'
// Shared components
import Aside from 'shared/components/navigation/aside'
import Breadcrumbs from 'shared/components/breadcrumbs.js'
diff --git a/sites/lab/pages/v/index.js b/sites/lab/pages/v/index.js
index e80cc40ca45..d959d121183 100644
--- a/sites/lab/pages/v/index.js
+++ b/sites/lab/pages/v/index.js
@@ -1,7 +1,6 @@
import React from 'react'
import Page from 'site/components/wrappers/page.js'
import useApp from 'site/hooks/useApp.js'
-import Head from 'next/head'
import Link from 'next/link'
import { useTranslation } from 'next-i18next'
import { formatVersionTitle } from 'site/components/version-picker.js'
@@ -9,23 +8,19 @@ import Layout from 'site/components/layouts/bare'
import { PageTitle } from 'site/components/wrappers/layout'
import availableVersions from 'site/available-versions.json'
-const DesignLinks = ({ list, prefix='', version=false }) => {
- const { t } = useTranslation(['patterns'])
-
- return (
-
- {list.map( d => (
- -
-
-
- {d}
-
-
-
- ))}
-
- )
-}
+const DesignLinks = ({ list, prefix='', version=false }) => (
+
+ {list.map( d => (
+ -
+
+
+ {d}
+
+
+
+ ))}
+
+)
const VersionLinks = ({ list, prefix='', version=false, currentDesigns=[] }) => (
@@ -51,8 +46,7 @@ const VersionLinks = ({ list, prefix='', version=false, currentDesigns=[] }) =>
)
const VersionListPage = ({ section=false, version=false }) => {
-const app = useApp()
-const { t } = useTranslation(['app'])
+ const app = useApp()
const currentDesigns = []
for (const section in app.designs) currentDesigns.push(...app.designs[section])
diff --git a/sites/shared/components/workbench/draft/point/index.js b/sites/shared/components/workbench/draft/point/index.js
index 62423d98e50..d31f7c6c2e2 100644
--- a/sites/shared/components/workbench/draft/point/index.js
+++ b/sites/shared/components/workbench/draft/point/index.js
@@ -1,6 +1,5 @@
import Text from '../text'
import Circle from '../circle'
-import { round } from 'shared/utils'
import { Tr, KeyTd, ValTd, Attributes, pointCoords } from '../path/index'
const RevealPoint = props => {
diff --git a/sites/shared/components/workbench/export.js b/sites/shared/components/workbench/export.js
index a6daa2de42d..40a25594e01 100644
--- a/sites/shared/components/workbench/export.js
+++ b/sites/shared/components/workbench/export.js
@@ -1,5 +1,4 @@
import { useState } from 'react'
-import { SizeMe } from 'react-sizeme'
import { useTranslation } from 'next-i18next'
import fileSaver from 'file-saver'
import yaml from 'js-yaml'
diff --git a/sites/shared/components/workbench/menu/xray/path.js b/sites/shared/components/workbench/menu/xray/path.js
index 25c3720d9c8..dd7bc20185b 100644
--- a/sites/shared/components/workbench/menu/xray/path.js
+++ b/sites/shared/components/workbench/menu/xray/path.js
@@ -1,4 +1,4 @@
-import { Ul, Li, Summary, NoSumDiv, Deg } from 'shared/components/workbench/menu'
+import { Ul, Li, NoSumDiv, Deg } from 'shared/components/workbench/menu'
import { formatMm } from 'shared/utils'
import Attributes from './attributes'
import Ops from './path-ops'
diff --git a/sites/shared/config/next.mjs b/sites/shared/config/next.mjs
index f9d53ae5c9e..9373b437832 100644
--- a/sites/shared/config/next.mjs
+++ b/sites/shared/config/next.mjs
@@ -1,5 +1,4 @@
import path from 'path'
-import { readdirSync } from 'fs'
import remarkGfm from 'remark-gfm'
import { designs, plugins } from '../../../config/software/index.mjs'
diff --git a/sites/shared/themes/trans.js b/sites/shared/themes/trans.js
index 92b80fe5e7a..a51ccd20ec5 100644
--- a/sites/shared/themes/trans.js
+++ b/sites/shared/themes/trans.js
@@ -1,5 +1,4 @@
const colors = require('tailwindcss/colors')
-const light = require('./light')
const blue = '#77cbf9'
const pink = '#ecadb9'