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
src/pages/volunteer.astro:136 sets frameborder="0" on an <iframe>. The frameborder attribute has been deprecated for years — modern HTML spec says use CSS border: 0 instead (which is the default for iframes anyway in modern browsers).
astro check warning
src/pages/volunteer.astro:136:9 - warning ts(6385): 'frameborder' is deprecated.
136 frameborder="0"
~~~~~~~~~~~
Suggested fix
Delete the frameborder="0" line. If the iframe shows a visible border in some browser, add style="border: 0" or a CSS class instead.
Acceptance criteria
Warning clears.
Volunteer page iframe still displays without a visible border in major browsers.
Remove deprecated
frameborderfromvolunteer.astroLabels:
cleanup,tech-debt,good-first-issueEstimated PR size: 1 file
Note
Ticket description was generated using Claude Code. Review before starting on a fix.
Note
The following issue adds support for
npm run astro:checkSummary
src/pages/volunteer.astro:136setsframeborder="0"on an<iframe>. Theframeborderattribute has been deprecated for years — modern HTML spec says use CSSborder: 0instead (which is the default for iframes anyway in modern browsers).astro checkwarningSuggested fix
Delete the
frameborder="0"line. If the iframe shows a visible border in some browser, addstyle="border: 0"or a CSS class instead.Acceptance criteria