Lately I log in, click on the pre-designed pattern I want to print. If I realize I clicked the wrong item, I click the GF logo thing - that used to take me back to my design choices on the patterns I’ve created.
Now it seems to just open up another tab to gowforge.com and wants me to login - again.
The only way I have found around this is to close the app.gllowforge.com tab, open another and start again.
There have been many people who seem to prefer that method of navigation, but most of us just clicked the dashboard icon. They have only changed that one thing…they renamed the dashboard to CREATE. It’s in the same place and will always take you back to your designs.
Also, for any TamperMonkey users, you can install this UserScript:
// ==UserScript==
// @name Restore classic GF icon link to dashboard
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Clicking the GF logo should take you to the create page.
// @author Christopher Masto
// @match htt*://app.glowforge.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=glowforge.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
let l = document.querySelector("a:has(.gf-iconWrapper)");
if (l) {
l.setAttribute("href", "/");
l.removeAttribute("target");
}
})();