Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 8dbbb01

Browse files
authored
Revert "fix: Correctly change value to be optional" (#70)
This reverts commit 218bb05.
1 parent 218bb05 commit 8dbbb01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AlwaysMaskedField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface AlwaysMaskedFieldProps extends InputProps {
2727
value?: string;
2828
onComplete?: (val: string) => void;
2929
valueLink?: {
30-
value?: string;
30+
value: string;
3131
requestChange: (newVal: string) => void;
3232
};
3333
onChange?: (e: { target: { id?: string; name?: string; value: string } }) => void;

0 commit comments

Comments
 (0)