diff --git a/src/components/simulator/Simulator.jsx b/src/components/simulator/Simulator.jsx
index 9831d1b3..d873049f 100644
--- a/src/components/simulator/Simulator.jsx
+++ b/src/components/simulator/Simulator.jsx
@@ -264,7 +264,6 @@ export default function Simulator() {
style={{ width: '30%' }}
className="select-light"
value={pwrGnrSimType}
- defaultValue={`D`}
onChange={(e) => {
handleChartChangeData(e.target.value)
setPwrGnrSimType(e.target.value)
@@ -334,33 +333,31 @@ export default function Simulator() {
- {moduleInfoList.length > 0 ? (
- moduleInfoList.map((moduleInfo) => {
- return (
- <>
-
- {/* 지붕면 */}
- | {moduleInfo.roofSurface} |
- {/* 경사각 */}
-
- {convertNumberToPriceDecimal(moduleInfo.slopeAngle)}
- {moduleInfo.classType == 0 ? '寸' : 'º'}
- |
- {/* 방위각(도) */}
- {convertNumberToPriceDecimal(moduleInfo.azimuth)} |
- {/* 태양전지모듈 */}
-
- {moduleInfo.itemNo}
- |
- {/* 매수 */}
- {convertNumberToPriceDecimal(moduleInfo.amount)} |
-
- >
- )
- })
- ) : (
-
- | {getMessage('common.message.no.data')} |
+ {moduleInfoList.length > 0 ? (
+ moduleInfoList.map((moduleInfo) => {
+ return (
+
+ {/* 지붕면 */}
+ | {moduleInfo.roofSurface} |
+ {/* 경사각 */}
+
+ {convertNumberToPriceDecimal(moduleInfo.slopeAngle)}
+ {moduleInfo.classType == 0 ? '寸' : 'º'}
+ |
+ {/* 방위각(도) */}
+ {convertNumberToPriceDecimal(moduleInfo.azimuth)} |
+ {/* 태양전지모듈 */}
+
+ {moduleInfo.itemNo}
+ |
+ {/* 매수 */}
+ {convertNumberToPriceDecimal(moduleInfo.amount)} |
+
+ )
+ })
+ ) : (
+
+ | {getMessage('common.message.no.data')} |
)}
@@ -385,25 +382,23 @@ export default function Simulator() {
- {pcsInfoList.length > 0 ? (
- pcsInfoList.map((pcsInfo) => {
- return (
- <>
-
- {/* 파워컨디셔너 */}
- |
- {pcsInfo.itemNo}
- |
- {/* 대 */}
- {convertNumberToPriceDecimal(pcsInfo.amount)} |
-
- >
- )
- })
- ) : (
-
- | {getMessage('common.message.no.data')} |
-
+ {pcsInfoList.length > 0 ? (
+ pcsInfoList.map((pcsInfo) => {
+ return (
+
+ {/* 파워컨디셔너 */}
+ |
+ {pcsInfo.itemNo}
+ |
+ {/* 대 */}
+ {convertNumberToPriceDecimal(pcsInfo.amount)} |
+
+ )
+ })
+ ) : (
+
+ | {getMessage('common.message.no.data')} |
+
)}