You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new imports reference files with spaces in their names (Date Picker_Active.png / Date Picker_Hover.png), which deviates from the project's naming conventions and may cause bundling or resolution issues. Consider renaming to use underscores or camel case consistently.
Ensure that the date picker image files are actually present in the assets directory with matching names and casing. Missing or mismatched files will lead to runtime errors.
Avoid having spaces in asset filenames as they can break import resolution or linters. Rename the files to use underscores or hyphens and update the import paths accordingly.
-export { default as DATE_PICKER_ACTIVE } from './Date Picker_Active.png';-export { default as DATE_PICKER_HOVER } from './Date Picker_Hover.png';+export { default as DATE_PICKER_ACTIVE } from './Date_Picker_Active.png';+export { default as DATE_PICKER_HOVER } from './Date_Picker_Hover.png';
Suggestion importance[1-10]: 7
__
Why: Renaming Date Picker_Active.png and Date Picker_Hover.png to remove spaces prevents import resolution issues and linting errors in asset paths.
to commit the new content to the CHANGELOG.md file, please type:
'/update_changelog --pr_update_changelog.push_changelog_changes=true'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Update images for Date and Time Picker
Changes Made
Images are updated for date and time picker blocks