Skip to content

Commit c68332e

Browse files
committed
chore: uncomment test changes
1 parent bb2f006 commit c68332e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

sample_app/lib/screens/user_feed/user_feed_screen.dart

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,19 @@ class _UserFeedScreenState extends State<UserFeedScreen> {
6464
_followSelfIfNeeded(timelineFeed, FeedId.user(client.user.id));
6565
});
6666
notificationFeed.getOrCreate();
67-
// storiesFeed.getOrCreate().then((value) {
68-
// _followSelfIfNeeded(storiesFeed, FeedId.story(client.user.id));
69-
// });
67+
storiesFeed.getOrCreate().then((value) {
68+
_followSelfIfNeeded(storiesFeed, FeedId.story(client.user.id));
69+
});
7070

7171
// need to make sure story feed is created, but we don't use it directly.
72-
// client
73-
// .feedFromQuery(
74-
// FeedQuery(
75-
// fid: FeedId.story(client.user.id),
76-
// watch: false,
77-
// ),
78-
// )
79-
// .getOrCreate();
72+
client
73+
.feedFromQuery(
74+
FeedQuery(
75+
fid: FeedId.story(client.user.id),
76+
watch: false,
77+
),
78+
)
79+
.getOrCreate();
8080
}
8181

8282
@override

0 commit comments

Comments
 (0)