diff --git a/web/app/components/Button.tsx b/web/app/components/Button.tsx
index fa7775e..255ba5c 100644
--- a/web/app/components/Button.tsx
+++ b/web/app/components/Button.tsx
@@ -18,7 +18,7 @@ export const Button = ({
onClick={onClickFn}
type={type}
className={`items-center shadow text-lg font-semibold inline-flex px-6 focus:outline-none justify-center text-center
- ease-in-out duration-300 outline-none border-2 sm:w-auto rounded-lg py-2 tracking-wide w-full
+ ease-in-out duration-300 outline-none border-2 sm:w-auto rounded-lg py-2 tracking-wide w-full select-none
border-blue-950 shadow-black rounded-b-xl border-b-8 appearance-none text-black placeholder-gray-400
${
color === "blue"
diff --git a/web/app/components/RootSection.tsx b/web/app/components/RootSection.tsx
index ca4eedb..b714cb1 100644
--- a/web/app/components/RootSection.tsx
+++ b/web/app/components/RootSection.tsx
@@ -43,7 +43,7 @@ export function RootSection(props: {
Tx Validations - {props.era}
- {open ?? (initialOpen && )}
+ {open && }
)}
{topic.title}
@@ -71,7 +71,7 @@ export function RootSection(props: {
Tx Validations - {props.era}
- {open ?? (initialOpen && )}
+ {open && }
)}
diff --git a/web/app/components/Validations/Configurations/UITab.tsx b/web/app/components/Validations/Configurations/UITab.tsx
index 3e961cd..8e33893 100644
--- a/web/app/components/Validations/Configurations/UITab.tsx
+++ b/web/app/components/Validations/Configurations/UITab.tsx
@@ -52,17 +52,35 @@ export const UITab = () => {
{validations.map((validation, index, arr) => (
{index !== arr.length - 1 &&
}
diff --git a/web/app/components/Validations/Information.tsx b/web/app/components/Validations/Information.tsx
index ae6c090..0f40c08 100644
--- a/web/app/components/Validations/Information.tsx
+++ b/web/app/components/Validations/Information.tsx
@@ -69,7 +69,6 @@ export function ValidationInformation() {
const shownValidations =
new URLSearchParams(location.search).get(SearchParams.LIST)?.split(",") ??
[];
-
return (