diff --git a/.changeset/dirty-ways-learn.md b/.changeset/dirty-ways-learn.md
new file mode 100644
index 0000000000..e83fbbdfa2
--- /dev/null
+++ b/.changeset/dirty-ways-learn.md
@@ -0,0 +1,6 @@
+---
+'@backstage/plugin-config-schema': patch
+'@backstage/plugin-scaffolder': patch
+---
+
+Fix a small browser console warning
diff --git a/plugins/config-schema/src/components/SchemaBrowser/SchemaBrowser.tsx b/plugins/config-schema/src/components/SchemaBrowser/SchemaBrowser.tsx
index 9ed3e8fe61..73e4f15c0a 100644
--- a/plugins/config-schema/src/components/SchemaBrowser/SchemaBrowser.tsx
+++ b/plugins/config-schema/src/components/SchemaBrowser/SchemaBrowser.tsx
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-import { createStyles, fade, withStyles } from '@material-ui/core';
+import { createStyles, alpha, withStyles } from '@material-ui/core';
import ChevronRightIcon from '@material-ui/icons/ChevronRight';
import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
import { TreeItem, TreeItemProps, TreeView } from '@material-ui/lab';
@@ -30,7 +30,7 @@ const StyledTreeItem = withStyles(theme =>
group: {
marginLeft: 7,
paddingLeft: theme.spacing(1),
- borderLeft: `1px solid ${fade(theme.palette.text.primary, 0.15)}`,
+ borderLeft: `1px solid ${alpha(theme.palette.text.primary, 0.15)}`,
},
}),
)((props: TreeItemProps) =>