Skip to content

Commit

Permalink
Oauth url error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
piercing-wind committed Jul 14, 2024
1 parent ba78616 commit df52bf7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/flavours/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Page = async () => {
const userSession = await getUserSession();
return (<>
<Header/>
<div className="mx-20 gap-5 space-y-20">
<div className="px-4 sm:mx-20 gap-y-5 sm:gap-5 space-y-20">
<h1 className="text-4xl font bold pt-10">Explore AI&#39;s</h1>
<div className="w-full flex flex-wrap gap-8 justify-center items-center">
<div className={`h-[12rem] w-[20rem] ${CSS.custom_shadow} rounded-xl overflow-hidden relative`}>
Expand Down
2 changes: 1 addition & 1 deletion src/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const {
token.id = existingUser.id;


// console.log("JWT : ", token);
// console.log("JWT : ", token);
return token;
},
async session({ session, token, trigger }) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/pricingPageSeeMore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const SeeMore =()=>{
<>
{pricing && <Pricing setPricing={setPricing}/>}
<Button variant={'default'} className="p-2 text-xl font-semibold" onClick={()=>setPricing(!pricing)}>See Details</Button>
<div className="my-10 flex flex-col gap-4">
<div className="px-2 my-10 flex flex-col gap-4">
<h1 className="w-full text-left font-semibold">FAQ</h1>
<div onClick={()=>setFaq({...faq, cancelSubscription: !faq.cancelSubscription})} className="flex items-center cursor-pointer">
<p>Can I cancel my subscription?</p>
Expand Down

0 comments on commit df52bf7

Please sign in to comment.