Skip to content
Snippets Groups Projects
Commit c9a24c1e authored by Johanna Szepanski's avatar Johanna Szepanski
Browse files

removed related helper function

parent eaffd878
No related branches found
No related tags found
2 merge requests!612Release 5.0.0,!554CE-3236: Remove statistics page
import { useState, useEffect } from "react";
import { alpha } from "@mui/material/styles";
import env from "../../config/env";
export function formatToList(items) {
......@@ -58,12 +57,6 @@ export function useWindowDimensions() {
return windowDimensions;
}
export function circularPalette(palette, index, opacity = 1.0) {
const colors = Object.values(palette);
let n = colors.length;
return alpha(colors[((index % n) + n) % n], opacity);
}
function applicationSubTitle() {
const title = `${env.ENVIRONMENT_TITLE}`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment