Skip to content

Commit 901af28

Browse files
authored
Merge branch 'main' into claude-bump-scheduler
2 parents dd0bae2 + e9d88d6 commit 901af28

81 files changed

Lines changed: 2965 additions & 3932 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.all-contributorsrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,8 @@
499499
"avatar_url": "https://avatars.githubusercontent.com/u/110767210?v=4",
500500
"profile": "https://github.com/LeeSkies",
501501
"contributions": [
502-
"code"
502+
"code",
503+
"review"
503504
]
504505
}
505506
]

.storybook/preview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const StoryBookWrapper = ({
118118
}, [darkMode, isDarkTheme, toggleTheme])
119119

120120
useEffect(() => {
121-
i18n.changeLanguage(locale)
121+
void i18n.changeLanguage(locale)
122122
}, [locale])
123123

124124
return children

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ We’ve hidden a few fun surprises in the [web app](https://open-bus-map-search.
109109
<tr>
110110
<td align="center" valign="top" width="14.28%"><a href="http://www.lastmile.co.il"><img src="https://avatars.githubusercontent.com/u/209318276?v=4?s=100" width="100px;" alt="eithanwes"/><br /><sub><b>eithanwes</b></sub></a><br /><a href="#bug-eithanwes" title="Bug reports">🐛</a></td>
111111
<td align="center" valign="top" width="14.28%"><a href="https://github.com/alon-greenshtein"><img src="https://avatars.githubusercontent.com/u/175951799?v=4?s=100" width="100px;" alt="Alon Greenstein"/><br /><sub><b>Alon Greenstein</b></sub></a><br /><a href="#code-alon-greenshtein" title="Code">💻</a></td>
112-
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeeSkies"><img src="https://avatars.githubusercontent.com/u/110767210?v=4?s=100" width="100px;" alt="Lee"/><br /><sub><b>Lee</b></sub></a><br /><a href="#code-LeeSkies" title="Code">💻</a></td>
112+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/LeeSkies"><img src="https://avatars.githubusercontent.com/u/110767210?v=4?s=100" width="100px;" alt="Lee"/><br /><sub><b>Lee</b></sub></a><br /><a href="#code-LeeSkies" title="Code">💻</a> <a href="#review-LeeSkies" title="Reviewed Pull Requests">👀</a></td>
113113
</tr>
114114
</tbody>
115115
</table>

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export default [
6969
'@typescript-eslint/no-explicit-any': 'warn',
7070
'@typescript-eslint/no-unsafe-call': 'off',
7171
'@typescript-eslint/no-unsafe-member-access': 'off',
72-
'@typescript-eslint/no-floating-promises': 'off',
72+
'@typescript-eslint/no-floating-promises': 'error',
7373
'@typescript-eslint/no-base-to-string': 'off',
7474
'@typescript-eslint/no-unsafe-assignment': 'off',
7575
// Prettier

nginx-default.conf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,11 @@ server {
4242
# - script-src: no 'unsafe-inline'/'unsafe-eval' (built index.html has no inline scripts); GA/GTM hosts load the analytics scripts.
4343
# - style-src-elem 'unsafe-inline': MUI/emotion and styled-components inject runtime <style> elements. style-src omits
4444
# 'unsafe-inline', so inline style="" attributes stay blocked (the app sets none — React style={{}} writes via the CSSOM).
45-
# - img-src: openstreetmap tiles, google-analytics beacon pixels.
46-
# - connect-src: *.hasadna.org.il for the stride/backend APIs, google-analytics/googletagmanager for analytics.
45+
# - img-src: openstreetmap tiles, google-analytics beacon pixels, avatars.githubusercontent.com for the about page's contributor avatars.
46+
# - connect-src: *.hasadna.org.il for the stride/backend APIs, google-analytics/googletagmanager for analytics,
47+
# api.github.com for the about page's contributor list.
4748
# - frame-src: youtube(-nocookie).com instruction videos, docs.google.com hackathon registration form.
4849
# - frame-ancestors 'self': CSP3 clickjacking control; same effect as the X-Frame-Options SAMEORIGIN above.
49-
add_header Content-Security-Policy "default-src 'self'; script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com; style-src 'self'; style-src-elem 'self' 'unsafe-inline'; img-src 'self' data: blob: https://*.openstreetmap.fr https://*.openstreetmap.org https://www.google-analytics.com; connect-src 'self' https://*.hasadna.org.il https://www.google-analytics.com https://region1.google-analytics.com https://www.googletagmanager.com; frame-src 'self' https://www.youtube.com https://www.youtube-nocookie.com https://docs.google.com; worker-src 'self' blob:; frame-ancestors 'self';" always;
50+
add_header Content-Security-Policy "default-src 'self'; script-src 'self' https://www.google-analytics.com https://www.googletagmanager.com; style-src 'self'; style-src-elem 'self' 'unsafe-inline'; img-src 'self' data: blob: https://*.openstreetmap.fr https://*.openstreetmap.org https://www.google-analytics.com https://avatars.githubusercontent.com; connect-src 'self' https://*.hasadna.org.il https://www.google-analytics.com https://region1.google-analytics.com https://www.googletagmanager.com https://api.github.com; frame-src 'self' https://www.youtube.com https://www.youtube-nocookie.com https://docs.google.com; worker-src 'self' blob:; frame-ancestors 'self';" always;
5051
}
5152
}

0 commit comments

Comments
 (0)