clean up
This commit is contained in:
@@ -5,7 +5,7 @@ FROM node:16-alpine AS build
|
||||
COPY package.json .
|
||||
# install node packages
|
||||
RUN npm set progress=false && npm config set depth 0
|
||||
RUN npm install
|
||||
RUN npm install --legacy-peer-deps
|
||||
|
||||
# #
|
||||
# # ---- Test ----
|
||||
|
||||
@@ -4,8 +4,8 @@ import "./LoginProvider.component.scss"
|
||||
const LoginProvider = (props: LoginProviderProps): JSX.Element => {
|
||||
return (
|
||||
<iframe
|
||||
// src="https://iam.notabuck.com"
|
||||
src="http://localhost:3001"
|
||||
src="https://iam.notabuck.com"
|
||||
// src="http://localhost:3001"
|
||||
title="IAM"
|
||||
className="ar-LoginProvider h-100"
|
||||
/>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { useEffect, useRef, useState } from "react"
|
||||
import { useRef, useState } from "react"
|
||||
import { v4 as uuid } from "uuid"
|
||||
import hljs from "highlight.js/lib/core"
|
||||
import javascript from "highlight.js/lib/languages/javascript"
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
import React from "react"
|
||||
import Dropdown from "./Dropdown"
|
||||
import Dropdown from "./DropDown"
|
||||
|
||||
describe("Dropdown", () => {
|
||||
it("renders without error", () => {
|
||||
|
||||
})
|
||||
it("renders without error", () => {})
|
||||
})
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ChangeEvent, useState } from "react"
|
||||
import { DropdownProps } from "../../../types/components.interface"
|
||||
import "./Dropdown.component.scss"
|
||||
import "./DropDown.component.scss"
|
||||
|
||||
const Dropdown = (props: DropdownProps): JSX.Element => {
|
||||
const {
|
||||
|
||||
Reference in New Issue
Block a user