Skip to content

Commit e9b6b7b

Browse files
committed
inform user about location settings
1 parent 1dc9616 commit e9b6b7b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frontend/src/views/app/Settings.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
</div>
104104
<div class="text-center px-8 py-8 border-t border-gray-300 w-full">
105105
<h1 class="inline-block mr-3 font-bold text-gray-matcha leading-none">Location</h1>
106+
<h1 class="text-md font-normal opacity-50 text-gray-matcha mx-auto pb-2 max-w-sm">If you refused sharing location, it will be approximated from your computer address </h1>
106107
<h1 class="mx-auto onboarding-sub-container-content-button-outline max-w-sm border font-normal mt-2 px-2 cursor-pointer" v-on:click="updateLocation()">Update current location</h1>
107108
</div>
108109
<div class="text-center py-8 w-full px-8 border-t border-gray-300">
@@ -214,7 +215,7 @@ export default {
214215
},
215216
async makePrimaryImage(...args) {
216217
const [imageId] = args;
217-
console.log(await this.$http.put(`/profile/images/${imageId}`));
218+
await this.$http.put(`/profile/images/${imageId}`);
218219
const user = await this.$http.get(`/users/${this.$store.getters.getLoggedInUser.id}`);
219220
await this.$store.dispatch('login', user.data);
220221
},

0 commit comments

Comments
 (0)