561 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
55
views
Dynamic route (e.g., $bid.jsx) not working in Remix with manual route configuration (Vite + folder structure)
Remix dynamic route $bid.jsx doesn't match when using folder-based routing
I'm working on a Remix + Vite project, and I'm trying to use folder-based routing with v3_routeConvention enabled.
However, ...
-1
votes
1
answer
259
views
GraphQL Client Unauthorized (401) when using App Proxy route despite valid session
I'm building a Shopify app using the official @shopify/shopify-app-remix framework with PrismaSessionStorage.
In my App Proxy route, I try to send an authenticated Admin GraphQL request using an ...
-2
votes
1
answer
220
views
Remix flat routes return 404 on Shopify app except for index.jsx
I'm building a Shopify app using Remix without any third-party routing plugins. My project structure follows Remix's flat routing convention. For example, I have this folder structure:
custom-signs
└──...
72
votes
3
answers
59k
views
"/.well-known/appspecific/com.chrome.devtools.json"' request
I have an app with Remix and Prisma. On the server side console I get this error:
status: 404,
statusText: 'Not Found',
internal: true,
data: 'Error: No route matches URL "/.well- known/...
4
votes
2
answers
219
views
Remix Error: You defined an action for route "routes/" but didn't return anything from your action function
I am using Remix for my project and I am currently getting this error:
Error: You defined an action for route "routes/demo" but didn't return
anything from your action function. Please ...
-1
votes
1
answer
50
views
How to toggle checkbox with disabled JavaScript in RemixJS
Tl, Dr; I want to toggle and submit <input type="checkbox" /> without <button type="submit">
In ReactJS with enabled JavaScript, I can toggle and submit form with ...
0
votes
2
answers
155
views
Any idea if its possible, and why, Remix.run makes numerous API calls on the route loader?
I had an issue using Google Maps Places API inside the loader function of my _index.tsx route on my app. The code for the loader function is below.
For relevance, I would point out that I tried to ...
0
votes
1
answer
59
views
Remix (React) Waiting for Submit to complete without useMemo
I have a table where the last column is a button that triggers an action which in turn queries the DB, returns a result and downloads the result as a csv. In order for the data to be processed and the ...
-1
votes
1
answer
235
views
How to pass props to Layout component?
I have a heading in Layout and I want to pass props to it. So I can start my <main> element.
Here is my Layout.tsx
<>
<h1>{title}</h1>
<main>
<Outlet /> {/* ...
0
votes
1
answer
148
views
In my remix Shopify app, the resource picker is throwing an error...how can I resolve this error?
I've tried importing the shopify resource picker from app bridge react and said it didnt exist so I am now trying to import it from app bridge actions library with only slightly more success. It is ...
-1
votes
1
answer
101
views
How can I create a free plan using the shopify billing api for my shopify app?
I am trying to give certain stores the opportunity to use my app for free as a way to get feedback from trusted people. When create a plan and set the amount to 0 it throws an error when I try to send ...
0
votes
1
answer
60
views
What is the URL path for a dynamic route file named ($locale).jsx in Remix?
I'm building a country selector in my Remix application. When I switch regions from US to SG or vice versa, however, the cart doesn't seem to update the buyer Identity with the change in country (the ...
-3
votes
1
answer
336
views
Deploying Shopify Remix App with Vercel Issues
I've built my app in dev mode, all working well with shopify app dev, I then pushed to a new github repo and linked that up to a remix vercel project, duplicating .env in Vercel's env variables.
I ...
1
vote
1
answer
97
views
Remix start command vs dev command
I started a Remix tutorial from this link
Basically just ran
npx create-remix@latest
And followed the instructions.
Now in my package.json I see:
"scripts": {
"build": "...
0
votes
1
answer
119
views
Can't access /public/ files in shopify remix _index.tsx
I have two .txt files, one of them for example is a list of countries. I need to import the data from these files into a .tsx function that will write them to the merchants theme files as snippets to ...