From 7a3210f5fdd75ed307efa8d043c3286ef3ede193 Mon Sep 17 00:00:00 2001 From: Melloware Date: Thu, 11 Apr 2024 17:10:19 -0400 Subject: [PATCH] Fix #6382: InputOtp wrong import (#6383) --- components/lib/inputotp/InputOtp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/inputotp/InputOtp.js b/components/lib/inputotp/InputOtp.js index eb6b179060..6acd94dc69 100644 --- a/components/lib/inputotp/InputOtp.js +++ b/components/lib/inputotp/InputOtp.js @@ -1,8 +1,8 @@ -import { InputText } from '@/components/lib/inputtext/InputText'; import React, { useContext, useRef, useState } from 'react'; import { PrimeReactContext, ariaLabel } from '../api/Api'; import { useHandleStyle } from '../componentbase/ComponentBase'; import { useMergeProps } from '../hooks/Hooks'; +import { InputText } from '../inputtext/InputText'; import { ObjectUtils } from '../utils/Utils'; import { InputOtpBase } from './BaseInputOtp';