fix(dashboard): fixes to strings (#7411)

* fix(dashboard): fix the text of manage areas

* add missing string

* add missing react import
This commit is contained in:
Shahed Nasser
2024-05-23 11:07:01 +03:00
committed by GitHub
parent 9a10adfd91
commit 6f1b90f207
3 changed files with 15 additions and 8 deletions
@@ -8,7 +8,13 @@ import {
} from "@medusajs/ui"
import * as LabelPrimitives from "@radix-ui/react-label"
import { Slot } from "@radix-ui/react-slot"
import { ReactNode, createContext, forwardRef, useContext, useId } from "react"
import React, {
ReactNode,
createContext,
forwardRef,
useContext,
useId,
} from "react"
import {
Controller,
ControllerProps,
@@ -24,7 +30,7 @@ const Provider = FormProvider
type FormFieldContextValue<
TFieldValues extends FieldValues = FieldValues,
TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>,
TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>
> = {
name: TName
}
@@ -35,7 +41,7 @@ const FormFieldContext = createContext<FormFieldContextValue>(
const Field = <
TFieldValues extends FieldValues = FieldValues,
TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>,
TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>
>({
...props
}: ControllerProps<TFieldValues, TName>) => {