) => {
- e.preventDefault();
- const val = e.target.value;
- setInputValue(val);
- if (onValueChanged) {
- onValueChanged(val);
- }
- };
-
- return (
-
- {error ? (
-
- ) : (
-
- )}
- {
- if (event.key === 'Enter' && props.onEnterPressed) {
- props.onEnterPressed();
- }
- }}
- />
-
- {enableShowHide && (
- {
- setForceShow(!forceShow);
- }}
- />
- )}
-
-
- );
-};
diff --git a/ts/components/conversation/right-panel/overlay/OverlayRightPanelSettings2.tsx b/ts/components/conversation/right-panel/overlay/OverlayRightPanelSettings2.tsx
index ee971a2a5..850c19182 100644
--- a/ts/components/conversation/right-panel/overlay/OverlayRightPanelSettings2.tsx
+++ b/ts/components/conversation/right-panel/overlay/OverlayRightPanelSettings2.tsx
@@ -7,7 +7,7 @@ import { useSelectedConversationKey } from '../../../../state/selectors/selected
import { Flex } from '../../../basic/Flex';
import { SessionButton } from '../../../basic/SessionButton';
import { SpacerLG, SpacerXL } from '../../../basic/Text';
-import { SessionInput2 } from '../../../inputs';
+import { SessionInput } from '../../../inputs';
import { SessionProgressBar } from '../../../loading';
import { StyledScrollContainer } from './components';
@@ -82,7 +82,7 @@ export const OverlayRightPanelSettings2 = () => {
showPercentage={true}
/>
- {
+export const SessionInput = (props: Props) => {
const {
autoFocus,
placeholder,
diff --git a/ts/components/inputs/index.tsx b/ts/components/inputs/index.tsx
index b767c89c6..0e2b3f719 100644
--- a/ts/components/inputs/index.tsx
+++ b/ts/components/inputs/index.tsx
@@ -1,3 +1,3 @@
-import { SessionInput2 } from './SessionInput2';
+import { SessionInput } from './SessionInput';
-export { SessionInput2 };
+export { SessionInput };
diff --git a/ts/components/registration/RegistrationUserDetails.tsx b/ts/components/registration/RegistrationUserDetails.tsx
index 75702134e..ac6c320de 100644
--- a/ts/components/registration/RegistrationUserDetails.tsx
+++ b/ts/components/registration/RegistrationUserDetails.tsx
@@ -1,5 +1,5 @@
import { SpacerLG } from '../basic/Text';
-import { SessionInput2 } from '../inputs';
+import { SessionInput } from '../inputs';
const RecoveryPhraseInput = (props: {
recoveryPhrase: string;
@@ -8,7 +8,7 @@ const RecoveryPhraseInput = (props: {
stealAutoFocus?: boolean;
}) => {
return (
- {
{window.i18n('displayNameDescription')}
-