Remove non-existing prop binding

This commit is contained in:
taehoon 2019-02-25 16:30:27 -05:00
parent bb1fac4bc2
commit 3f9fd07f93
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
{{$t('who_to_follow.who_to_follow')}}
</div>
<div class="panel-body">
<user-card v-for="user in users" :key="user.id" :user="user" :showFollows="true"></user-card>
<user-card v-for="user in users" :key="user.id" :user="user"></user-card>
</div>
</div>
</template>