Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix crash on feed screen #52

Merged
merged 3 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,25 @@ assignees: ''

<!-- A clear and concise description of what the bug is. -->

## Environment

- <!-- App version, platform. -->
- <!-- OS version. -->
- <!-- Other info. -->

## Steps to reproduce

1. <!-- e.g. Go to ... -->
2. <!-- e.g. Click on ... -->
3. <!-- e.g. Scroll down to ... -->

## Expected behavior
### Expected behavior

<!-- A clear and concise description of what you expected to happen. -->

4. <!-- e.g. Expected to see ... -->

## Actual behavior
### Actual behavior

<!-- What actually happened - describe the unexpected behavior. -->

Expand Down
2 changes: 1 addition & 1 deletion Projects/App/FeedFeature/Sources/FeedView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public struct FeedView: View {
if showPlaceholder {
placeholderView
} else {
ForEach(store.scope(state: \.statuses, action: \.status)) { statusStore in
ForEach(Array(store.scope(state: \.statuses, action: \.status))) { statusStore in
StatusView(store: statusStore)
}
.transition(
Expand Down
Binary file modified web/assets/graph-external.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.