Skip to content

Commit

Permalink
Fix antd-phone-input import
Browse files Browse the repository at this point in the history
  • Loading branch information
ir4y committed Oct 5, 2023
1 parent bcc1427 commit 17936a8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Expand Up @@ -4,14 +4,18 @@ import { QuestionItemProps } from 'sdc-qrf';

import { useFieldController } from '../../hooks';

// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const PhoneInputFixed: typeof PhoneInput = PhoneInput.default ? PhoneInput.default : PhoneInput;

export function QuestionPhone({ parentPath, questionItem }: QuestionItemProps) {
const { linkId } = questionItem;
const fieldName = [...parentPath, linkId, 0, 'value', 'string'];
const { value, onChange, disabled, formItem } = useFieldController(fieldName, questionItem);

return (
<Form.Item {...formItem}>
<PhoneInput
<PhoneInputFixed
country="us"
value={value}
disabled={disabled}
Expand Down
7 changes: 7 additions & 0 deletions yarn.lock
Expand Up @@ -4670,6 +4670,13 @@ ansi-styles@^6.0.0, ansi-styles@^6.1.0:
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5"
integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==

antd-phone-input@^0.2.2:
version "0.2.3"
resolved "https://registry.yarnpkg.com/antd-phone-input/-/antd-phone-input-0.2.3.tgz#1c46939418250f3241cf7b5f88e7998d27f385b6"
integrity sha512-PUJAYIe4lzMo1JgiqdEcbWepkeAKLmm+2IKTmNALSO7WByY/aD701JmLBEdNRPYQitegT6eAQdVF7Uj7a492EQ==
dependencies:
react-phone-input-2 "^2.15.1"

antd@^5.6.4:
version "5.6.4"
resolved "https://registry.yarnpkg.com/antd/-/antd-5.6.4.tgz#689d74ba61181ba6ea87a0c5d249d30d116ce602"
Expand Down

0 comments on commit 17936a8

Please sign in to comment.