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

Anna design feedback #290

Merged
merged 6 commits into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions src/components/modals/GalleryModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ const isArtist = computed(() => props.model.artist == address.value)
const state = reactive(initialState);

watch(lastInputEvent, (event) => {
console.log("lastinputevent", event)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Console log s weg

if (event.which == 27) {
emit("close");
}
Expand Down
2 changes: 1 addition & 1 deletion src/def-composables/useLogin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const useLoginInstance = () => {
router.push({name: "UserView", params: {id: address.value}})
}
signUpRequired().then((required) => {
console.log(required)
console.log("signUpRequired?", required)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bitte nicht

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ist ein console.log von dir, wo ich text hinzugefügt habe, damit es nicht mehr komplett random rankommt

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mach lieber ganz raus

if (!required) {
login()
} else {
Expand Down
Loading