* Great! The build was successful. The tooltip has been updated to show "Add a dev server script in project settings to enable this feature" when the dev server is disabled, which provides a clearer message to users about what they need to do to enable the dev server functionality.
The change I made:
- Updated the tooltip text from "Configure a dev server command in project settings" to "Add a dev server script in project settings to enable this feature"
- This makes it clearer that the user needs to add a script, not just configure one
- The tooltip now explicitly mentions enabling the feature
The tooltip will now properly remind users to add a dev server script in project settings when the dev server button is disabled.
* Excellent! The build is successful. Now the tooltip will show even when the dev server button is disabled because:
1. The `TooltipTrigger` now wraps the outer `div` instead of the disabled `Button`
2. The `div` can receive mouse events even when the button inside is disabled
3. The tooltip will display "Add a dev server script in project settings to enable this feature" when `projectHasDevScript` is false
This solves the issue where the tooltip wasn't showing when the button was disabled, providing users with the helpful reminder about configuring the dev server script in project settings.
* prettier