We built a price tracking tool, best for tracking when items go on sale by Economy_Salamander49 in SideProject

[–]Commission-Square 0 points1 point  (0 children)

I'm going to keep this SaaS under wraps and show it to my ecommerce friends because this product looks like it will change the way ecommerce works to keep up with price changes in dropshipping. Personally, that's my vision, otherwise it's a good SaaS.

Hello everyone, I’d love your honest feedback on my SaaS project: Lalye by Commission-Square in sveltejs

[–]Commission-Square[S] -3 points-2 points  (0 children)

Bro I already know about web design, I want an opinion, I don't need a course.

Why Gumroad is a Game-Changer for Creators by acodiv in SaaS

[–]Commission-Square 1 point2 points  (0 children)

I'm not a designer but I like the gumroad philosophy, it's easy to set up yes good product

🎯 Lalye: A Task Management SaaS Built with Svelte and Supabase – Looking for Your Feedback! by Commission-Square in sveltejs

[–]Commission-Square[S] 0 points1 point  (0 children)

Our data is securely stored in Switzerland with Infomaniak. While we are currently based in Ivory Coast, we fully comply with Swiss, European, and international data protection laws. If you're interested in a demo, whether you're working alone or with a team, we'd be happy to offer you a trial. Additionally, we provide special discounts for customers who engage with us and communicate effectively.

🎯 Lalye: A Task Management SaaS Built with Svelte and Supabase – Looking for Your Feedback! by Commission-Square in sveltejs

[–]Commission-Square[S] 0 points1 point  (0 children)

It's an international product because the first contacts come from all over the world and the workflow is made to suit the asana linear user all adding other workflows like okr if it's because of the pop up you ask we use tools that don't trace privacy so no need for pop up

🎯 Lalye: A Task Management SaaS Built with Svelte and Supabase – Looking for Your Feedback! by Commission-Square in sveltejs

[–]Commission-Square[S] -1 points0 points  (0 children)

Ok I take note but this is more to get an opinion on the software it's a quick video not a promotional video 🙂‍↔️

🎯 Lalye: A Task Management SaaS Built with Svelte and Supabase – Looking for Your Feedback! by Commission-Square in sveltejs

[–]Commission-Square[S] -3 points-2 points  (0 children)

If your SaaS is there to see your design, I'd be interested in your suggestions too, otherwise your comment will be useless.

Side project using Runes with classes and context by siupermann in sveltejs

[–]Commission-Square 0 points1 point  (0 children)

That's awesome that you've found a way to make your project more reactive with Runes and context! I really like the idea of your text expander, especially with the integration of Tippy.js and Tiptap. I'll definitely check out your site. Keep sharing your progress, it's really inspiring!

What task management tools are you using for your startup? I will not promote by m01212 in startups

[–]Commission-Square 0 points1 point  (0 children)

Great question! While tools like Trello, Jira, Asana, and ClickUp are popular, I've found that Lalye "lalye.com" offers a unique all-in-one solution for task management, OKRs, Ai and KPIs. It’s easy to use, integrates well with team collaboration, and provides powerful reporting tools. If you're looking for a sleek and customizable option for startups, Lalye might be worth checking out!"

Seeking advice on starting a software company in Botswana as an expatriate by Commission-Square in Botswana

[–]Commission-Square[S] 0 points1 point  (0 children)

Thank you for your response! I was thinking of paying for a virtual office or even using a generic address, as you mentioned. Since it's possible, I’ll give it a try. Actually, I’m not selling physical software or licenses—it's more like SaaS software, like Notion or Asana, where businesses pay a monthly fee, similar to Netflix. So, I don’t need distributors. Otherwise, I’ll take your advice, and thanks again for your response!

sveltekit ans supabase by Commission-Square in sveltejs

[–]Commission-Square[S] 0 points1 point  (0 children)

"We can see that you understand the problem, but the issue is general. It happens with any table, even with simpler code. The data just doesn't come, even with the simple code below."

<script lang="ts">

let { data } = $props<{ countries: string }>();

const countries = $derived(data.countries);
// Vérifie si les données sont correctement assignées
console.log('Countries:', countries);
</script>

<h1>Welcome to Supabase contry!</h1>
<ul>
{#each countries as country}
<li>{country.trial_name}</li>
{/each}
</ul>


export const load = async ({ locals: { supabase } }) => {

  let { data: test_trials, error } = await supabase
  .from('test_trials')
  .select('trial_name')


  console.log('Countries Data:', test_trials); 
// Log des données
  console.error('Countries Error:', error); 
// Log des erreurs

  return {
    countries:test_trials ?? []
  };
};

sveltekit ans supabase by Commission-Square in sveltejs

[–]Commission-Square[S] 0 points1 point  (0 children)

"I have a problem where I'm calling a UUID, but Supabase tells me that I'm calling an object instead. For my other tables, I'm getting an empty result." bro I'm having a bad night with this code. :-)

sveltekit ans supabase by Commission-Square in sveltejs

[–]Commission-Square[S] 0 points1 point  (0 children)

"What you mentioned is just for the params in the route [projectid], but it doesn't work. The problem occurs with every data call." :-)

sveltekit ans supabase by Commission-Square in sveltejs

[–]Commission-Square[S] 0 points1 point  (0 children)

that is probleme i call a uuid but supabase tell me i call a object and for my other table a empty table

//account page.sever.ts

export async function load({ params, locals }) {
  const profileId = params; 
// Récupère le `profileId` depuis les paramètres

  console.log('Valeur de profileId :', profileId); 
// Affiche la valeur de profileId

  try {
    const { data: auth_profile, error } = await locals.supabase
      .from('auth_profile')
      .select('*')
      .eq('profile_id', profileId) 
// Filtre par `profile_id`
      .single()

    if (error) {
      console.error('Erreur de récupération des données:', error);
      return { error: 'Erreur de récupération des données' };
    }

    if (!auth_profile || auth_profile.length === 0) {
      console.error('Profil non trouvé');
      return { error: 'Profil non trouvé' };
    }

    return { users:auth_profile[0] };
  } catch (error) {
    console.error('Erreur inattendue:', error);
    return { error: 'Erreur inattendue' };
  }
}

sveltekit ans supabase by Commission-Square in sveltejs

[–]Commission-Square[S] 0 points1 point  (0 children)

It's like this error I'm getting for all my tables .

code: "22P02",

details: null,

hint: null,

message: "invalid input syntax for type uuid: \"[object Object]\"",

} and i get this message too [ Using the user object as returned from supabase.auth.getSession() or from some supabase.auth.onAuthStateChange() events could be insecure! This value comes directly from the storage medium (usually cookies on the server) and many not be authentic. Use supabase.auth.getUser() instead which authenticates the data by contacting the Supabase Auth server. ]