Browse Source

biome

pull/311/head
Hunter Thornsberry 2 years ago
parent
commit
d699764546
  1. 8
      src/components/Form/FormInput.tsx
  2. 2
      src/components/Form/FormPasswordGenerator.tsx
  3. 2
      src/pages/Messages.tsx

8
src/components/Form/FormInput.tsx

@ -31,7 +31,7 @@ export function GenericInput<T extends FieldValues>({
}: GenericFormElementProps<T, InputFieldProps<T>>) {
const [passwordShown, setPasswordShown] = useState(false);
const togglePasswordVisiblity = () => {
setPasswordShown(passwordShown ? false : true);
setPasswordShown(!passwordShown);
};
return (
@ -40,9 +40,11 @@ export function GenericInput<T extends FieldValues>({
control={control}
render={({ field: { value, onChange, ...rest } }) => (
<Input
type={field.type == "password" && passwordShown ? "text" : field.type}
type={
field.type === "password" && passwordShown ? "text" : field.type
}
action={
field.type == "password"
field.type === "password"
? {
icon: passwordShown ? EyeOff : Eye,
onClick: togglePasswordVisiblity,

2
src/components/Form/FormPasswordGenerator.tsx

@ -25,7 +25,7 @@ export function PasswordGenerator<T extends FieldValues>({
}: GenericFormElementProps<T, PasswordGeneratorProps<T>>) {
const [passwordShown, setPasswordShown] = useState(false);
const togglePasswordVisiblity = () => {
setPasswordShown(passwordShown ? false : true);
setPasswordShown(!passwordShown);
};
return (

2
src/pages/Messages.tsx

@ -76,7 +76,7 @@ export const MessagesPage = (): JSX.Element => {
chatType === "broadcast" && currentChannel
? getChannelName(currentChannel)
: chatType === "direct" && nodes.get(activeChat)
? (nodes.get(activeChat)?.user?.longName ?? nodeHex)
? nodes.get(activeChat)?.user?.longName ?? nodeHex
: "Loading..."
}`}
actions={

Loading…
Cancel
Save