Skip to content

Commit

Permalink
Merge pull request #60 from dukesx/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
dukesx authored Oct 8, 2022
2 parents eabeb69 + c0cb640 commit 48b632a
Show file tree
Hide file tree
Showing 8 changed files with 277 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ yarn-debug.log*
yarn-error.log*
lerna-debug.log*

#Store
.DS_Store

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

Expand Down
Binary file modified components/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion components/get-started/forgot-password.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const ForgotPasswordTab = ({
size="invisible"
ref={forgottenCaptchaRef}
theme={colorScheme == "dark" ? "dark" : "light"}
sitekey="b2d3efbe-b36a-43f7-bcfd-785299a19a06"
sitekey={process.env.NEXT_PUBLIC_CAPTCHA_KEY}
onVerify={(token, ekey) => setForgottenToken(token)}
/>

Expand Down
2 changes: 1 addition & 1 deletion components/get-started/sign-up.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const SignupTab = ({ client, colorScheme, setTab }: GetStartedProps) => {
size="invisible"
ref={signupCatchaRef}
theme={colorScheme == "dark" ? "dark" : "light"}
sitekey="b2d3efbe-b36a-43f7-bcfd-785299a19a06"
sitekey={process.env.NEXT_PUBLIC_CAPTCHA_KEY}
onVerify={(token, ekey) => setSignupToken(token)}
/>

Expand Down
6 changes: 6 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@ module.exports = {
reactStrictMode: false,
swcMinify: true,
};

// const removeImports = require("next-remove-imports")({
// options: {},
// });

// module.exports = removeImports();
2 changes: 1 addition & 1 deletion pages/creator-studio/publish/article.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const ArticleComposer = () => {
className="mt-5 h-full min-h-[400px]"
plugins
previewStyle={"tab"}
height="800px"
height="500px"
toolbarItems="full"
/>
</Input.Wrapper>
Expand Down
4 changes: 2 additions & 2 deletions pages/get-started/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const GetStarted = () => {
<Group
className="w-full"
mt="xl"
mb={50}
mb={40}
align="center"
position="center"
>
Expand Down Expand Up @@ -297,7 +297,7 @@ const GetStarted = () => {
size="invisible"
ref={signinCaptchaRef}
theme={colorScheme == "dark" ? "dark" : "light"}
sitekey="b2d3efbe-b36a-43f7-bcfd-785299a19a06"
sitekey={process.env.NEXT_PUBLIC_CAPTCHA_KEY}
onVerify={(token, ekey) => setSigninToken(token)}
/>
<Button
Expand Down
263 changes: 263 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit 48b632a

@vercel
Copy link

@vercel vercel bot commented on 48b632a Oct 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

afridi-dev – ./

afridi-dev-git-main-dukesx.vercel.app
afridi-dev.vercel.app
afridi-dev-dukesx.vercel.app
afridi.dev

Please sign in to comment.