Help forum
- Problem in storing auth-token in session cookie
binayek._89441
0 1 day ago
7 Jan 2026, 06:51
I was watching the No Code Coder CRM building tutorial , where I faced this problem of storing in a session cookie . I found the same problem posted previously in the comments , and it says it is fixed . What should I be doing ? - Question about Challenge 3

nathandh
6 1 day ago
6 Jan 2026, 18:59
In the 3rd challenge (with repeating country list ) , there 's a step to bind the input variable to the search parameter in the API call . Looks like : ilike.% What does this string represent ? - Change account email
Nikita Repetun
2 2 days ago
6 Jan 2026, 10:17
I want to change email on the account , but system doesn 't allow . How can i solve this ? - select bound to a variable wont show the right option
Marcel
6 3 days ago
4 Jan 2026, 16:41
I have a select where I have bound the value to a variable . However , after a reload , this select no longer shows the correct value but always falls back to the first option . I checked everything , the variable or value is set correctly . There seems to be a timing issue with the select as it works fine with text bound to the same variable . Unfortunately I can 't think of any way to solve the problem (in Nordcraft ) anymore . - Does Nordcraft uses a static IP address for the proxy service?
unicodes
2 4 days ago
4 Jan 2026, 13:01
I 'm considering to add the proxy IP address to supabase whitelist in order to limit access to the database . Does Nordcraft uses static IP address or it changes ? - Can't access to Nordcraft Editor (app.nordcraft.com)

ArtTnoV
🐞13 4 days ago
4 Jan 2026, 10:21
When I press "Open app " , or go straight to app .nordcraft .com - it redirects to 404 page - Supabase Graphql
Tinsoldier
3 13 days ago
26 Dec 2025, 12:00
When I connect the service and go to editor , it shows all the collections but selecting a collection gives no data even thought public select is on . - what is the scope of style variables?
Ben H
5 14 days ago
24 Dec 2025, 23:06
can someone clarify the expected scope of style variables ? i declared some style variables at the root element of the page i 'm working in . inside that root div , i can see them available in the style panel as expected . however , in children of this div , sometimes they seem available and sometimes not . for example , inside one child component , referencing - -font -color works as expected . however , in a different child component , referencing - -font -color -secondary is not working . are there rules regarding where these declared style variables can be used ? - Filepond Integration
knamuora
3 15 days ago
23 Dec 2025, 13:51
Hi , i 've been stuck for some time on this issue , while integrating filepond 's custom file picker . In setup i 've an action initializing filepond and all the logic which works fine , having only one argument of elementId targeting the input element and having these events : onFileSelected and onUploadError . On onFileSelected , i 'm passing these values : { "name " : "video .mp4 " , "type " : "video /mp4 " , "fileObject " : { } } The issue is in a workflow i 'm only obtaining name and type , the fileObject (that should contain binary data ) is always returning empty . I 'd appreaciate if anyone would help me resolve this . Thank you ! - format date - YYYY-MM-DD
Miles
11 16 days ago
22 Dec 2025, 13:56
I 'm trying to output todays date in the format YYYY -MM -DD to set a max attribute as todays date in a date input . Can 't figure out how to do this and neither can the AI . It seems like it should be such a simple setting of something . . .I 'm sure I 'm missing it . Image is of what the AI suggested . Side note - Is the AI making up functions that don 't exist ? 🤔 😅 - 302 infinite loop on /login route
Kleveland Bishop
3 18 days ago
21 Dec 2025, 01:07
If you head to my site wrkflo .ai , its stuck continuously redirecting . Same happens on development paths e .g . https://b-wrkflo.toddle.site/login please help when available ! - Script content not SSR?

J.ulian
5 20 days ago
19 Dec 2025, 09:48
Hi , why isn 't the result of this simple formula visible in the page source (but available in the dev tools element tree ) ? Many thanks , guess there is a simple explanation for this . . . - httponly

Dublin
23 21 days ago
18 Dec 2025, 12:16
How should I properly extract the token from my API response ? My backend returns the authentication token , but I 'm not sure what the correct formula path should be in the "Set HttpOnly cookie " Value parameter . Why is the Authorization header trying to get a cookie during the login request itself ? Should this header be removed entirely from the login API configuration ? What 's the best practice for handling form submission with API calls in Nordcraft ? Should I use the form 's submit event or the button 's click event ? How can I conditionally set the cookie only when login is successful ? Currently , the cookie action runs in onCompleted regardless of whether authentication succeeded or failed . Expected Behavior : User enters credentials and clicks Login API call is made to backend If successful , token is stored in HttpOnly cookie User is redirected to /gri -management If failed , user sees an error message - use color-mix with variables
BabaBambule
20 23 days ago
16 Dec 2025, 12:21
So basically a follow up to this post https://discord.com/channels/972416966683926538/1266378893292732436/1266381383425720351 I want to add color -mix to my theme and using it like this color-mix(in, oklab, #E85002, 80%, #FFFFFF, 20%) already works , but I 'd like to replace the fixed color values for var ( - -brand ) and var ( - -white ) but writing color-mix(in, oklab, var(--brand), 80%, var(--white), 20%) always converts to color-mix(in, oklab, --brand, 80%, --white, 20%) and doesn 't work anymore . Is that just not possible yet or am I missing something ? - How to prevent navigation flickering?
Luca_
4 27 days ago
11 Dec 2025, 21:52
is it possible to prevent this navigation flickering ? The link elements are rendered from an array , all api call are running on serverside .