Skip to content

Commit

Permalink
Merge pull request #1317 from starknet-io/dev
Browse files Browse the repository at this point in the history
Merge dev into production
  • Loading branch information
lorcan-codes authored Sep 6, 2023
2 parents 17dc824 + 2ee3198 commit 43d86e9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/.* @thecotne @robwalsh21 @milosyuki @lorcan-codes
/*.* @thecotne @robwalsh21 @milosyuki @lorcan-codes
/src/ @thecotne @robwalsh21 @milosyuki @lorcan-codes
/workspaces/ @thecotne @robwalsh21 @milosyuki @lorcan-codes
/.* @thecotne @robwalsh21 @milosyuki @lorcan-codes @jopedroliveira
/*.* @thecotne @robwalsh21 @milosyuki @lorcan-codes @jopedroliveira
/src/ @thecotne @robwalsh21 @milosyuki @lorcan-codes @jopedroliveira
/workspaces/ @thecotne @robwalsh21 @milosyuki @lorcan-codes @jopedroliveira
12 changes: 7 additions & 5 deletions workspaces/cms-scripts/src/crowdin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,13 @@ export function handleFields(
break;

case "markdown":
files.push({
type: "markdown",
data: data[field.name],
filepath: filepath + "_" + field.name,
});
if(data[field.name] != null){
files.push({
type: "markdown",
data: data[field.name],
filepath: filepath + "_" + field.name,
});
}
break;

case "list":
Expand Down

1 comment on commit 43d86e9

@vercel
Copy link

@vercel vercel bot commented on 43d86e9 Sep 6, 2023

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:

starknet-summit-website – ./workspaces/starknet-summit

starknet-summit-website-yuki-labs.vercel.app
starknet-summit-website-git-production-yuki-labs.vercel.app
starknet-summit-website.vercel.app
summit23.starknet.io

Please sign in to comment.