Skip to content

Commit

Permalink
Merge prod into main (#2040)
Browse files Browse the repository at this point in the history
* fix: always pass context to classCode function

* chore: bump version number (#1872)

* fix: add release workflow updates to production branch (#1873)
  • Loading branch information
ggurdin authored Mar 5, 2025
1 parent 363b0e6 commit b9732b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,4 @@ jobs:
aws s3 sync ./build/web s3://$WEBAPP_S3_BUCKET
- name: AWS CloudFront Invalidation
run: |
aws cloudfront create-invalidation --distribution-id $CF_DISTRIBUTION_ID --paths "/*"
aws cloudfront create-invalidation --distribution-id $CF_DISTRIBUTION_ID --paths "/*"
2 changes: 1 addition & 1 deletion lib/pangea/chat_list/utils/chat_list_handle_space_tap.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void chatListHandleSpaceTap(
if (rooms.any((s) => s.spaceChildren.any((c) => c.roomId == space.id))) {
autoJoin(space);
} else if (justInputtedCode != null &&
justInputtedCode == space.classCode) {
justInputtedCode == space.classCode(context)) {
// do nothing
} else {
controller.showInviteDialog(space);
Expand Down

0 comments on commit b9732b6

Please sign in to comment.