diff --git a/webapp/components/features/FollowList/FollowList.story.js b/webapp/components/features/FollowList/FollowList.story.js
index b7f093854..78d895fe9 100644
--- a/webapp/components/features/FollowList/FollowList.story.js
+++ b/webapp/components/features/FollowList/FollowList.story.js
@@ -53,7 +53,19 @@ storiesOf('FollowList', module)
template: '',
}
})
- .add('with up to 7 connections', () => {
+ .add('with all connections loaded', () => {
+ return {
+ components: { FollowList },
+ store: helpers.store,
+ data() {
+ return { user: lessThanSevenUser }
+ },
+
+ template: '',
+ }
+ })
+
+ .add('with more connections loadable', () => {
return {
components: { FollowList },
store: helpers.store,
@@ -69,18 +81,7 @@ storiesOf('FollowList', module)
template: '',
}
})
-
- .add('with all connections', () => {
- return {
- components: { FollowList },
- store: helpers.store,
- data() {
- return { user: allConnectionsUser }
- },
- template: '',
- }
- })
- .add('with a lot of connections', () => {
+ .add('with 1000 connections loaded', () => {
return {
components: { FollowList },
store: helpers.store,