Skip to content

Commit ea734dc

Browse files
committed
[fix] 온도계 텍스트 수정
1 parent 133d569 commit ea734dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/lib/widgets/thermometer/big_thermometer.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class BigThermometer extends StatelessWidget {
1111
@override
1212
Widget build(BuildContext context) {
1313
String temperatureLabel = '';
14-
if (temperature == 100) {
14+
if (temperature >= 100) {
1515
temperatureLabel = '타오르는 열정처럼';
1616
} else if (temperature >= 75 && temperature < 100) {
1717
temperatureLabel = '따스한 마음이 전해지는';

0 commit comments

Comments
 (0)