This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "LinkedIn Job Search: Auto-Match Resume with AI + Cover Letter & Telegram Alerts", | |
"nodes": [ | |
{ | |
"parameters": { | |
"fieldToSplitOut": "links", | |
"options": {} | |
}, | |
"id": "bd8ca013-eefb-439e-b15b-48b5502ffa91", | |
"name": "Split Out", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const App = (props) => { | |
const [isLogged, setIsLogged] = useState(); | |
const [initialAction, setInitialAction] = useState(); | |
useEffect(() => { | |
if (read_cookie("tokenServer").length > 0) { | |
setIsLogged(true); | |
} else { | |
setIsLogged(false); | |
} |