Skip to content

Commit

Permalink
boolを逆にする
Browse files Browse the repository at this point in the history
  • Loading branch information
imamiya-masaki committed Dec 6, 2024
1 parent c7f347d commit 4956e5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const SimulatorChairActiveToggle: FC = () => {
id="chair-activity"
/>
</div>
{!isAnotherSimulatorBeingUsed && (
{isAnotherSimulatorBeingUsed && (
<div
role="presentation"
className="absolute top-0 left-0 w-full h-full bg-neutral-500 bg-opacity-60 flex items-center justify-center cursor-not-allowed"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const SimulatorChairConfig: FC = () => {
destLoc={data?.destination_coordinate}
/>
</div>
{!isAnotherSimulatorBeingUsed && (
{isAnotherSimulatorBeingUsed && (
<div className="absolute top-0 left-0 w-full h-full bg-neutral-500 bg-opacity-60 flex items-center justify-center cursor-not-allowed">
<Text className="text-white" bold size="sm">
現在、他のシミュレーターが使用中です
Expand Down

0 comments on commit 4956e5e

Please sign in to comment.