Skip to content

Commit

Permalink
refactor: update import
Browse files Browse the repository at this point in the history
  • Loading branch information
Siumauricio committed Jun 8, 2024
1 parent 44a592f commit 41dc388
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import React, { useEffect, useState } from "react";
import { useForm } from "react-hook-form";
import { toast } from "sonner";
import { z } from "zod";
import ToggleVisiblityInput from "@/components/shared/toggle-visibility-input"
import { ToggleVisibilityInput } from "@/components/shared/toggle-visibility-input";

const DockerProviderSchema = z.object({
externalPort: z.preprocess((a) => {
Expand Down Expand Up @@ -137,7 +137,7 @@ export const ShowExternalMariadbCredentials = ({ mariadbId }: Props) => {
<div className="flex flex-col gap-3">
{/* jdbc:mariadb://5.161.59.207:3306/pixel-calculate?user=mariadb&password=HdVXfq6hM7W7F1 */}
<Label>External Host</Label>
<ToggleVisiblityInput value={connectionUrl} />
<ToggleVisibilityInput value={connectionUrl} disabled />
</div>
</div>
)}
Expand Down

0 comments on commit 41dc388

Please sign in to comment.