Skip to content

Commit

Permalink
chore: update submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
Wangtaofeng committed Feb 29, 2024
1 parent deeb40a commit aa46423
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ const BuildByTemplate: FC<BuildByTemplateProps> = ({
bd="none"
w="200px"
teamIdentifier={marketplace?.contributorTeam?.teamIdentifier}
handleForkApp={(appId: string, teamIdentifier?: string) => {
handleForkApp={async (
appId: string,
teamIdentifier?: string,
) => {
track?.(
ILLA_MIXPANEL_EVENT_TYPE.CLICK,
{
Expand Down Expand Up @@ -152,7 +155,7 @@ const BuildByTemplate: FC<BuildByTemplateProps> = ({
{showCreateFromTemplateModal && (
<CreateFromTemplateModal
hiddenCreateBlank
handleForkApp={(appId: string, teamIdentifier?: string) => {
handleForkApp={async (appId: string, teamIdentifier?: string) => {
track?.(
ILLA_MIXPANEL_EVENT_TYPE.CLICK,
{
Expand Down
3 changes: 2 additions & 1 deletion apps/builder/src/redux/currentApp/appInfo/appInfoState.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AppInfoShape } from "@illa-public/public-types"
import { APP_TYPE, AppInfoShape } from "@illa-public/public-types"

export const DashboardAppInitialState: AppInfoShape = {
updatedAt: "",
Expand All @@ -11,6 +11,7 @@ export const DashboardAppInitialState: AppInfoShape = {
waterMark: false,
publishedToMarketplace: false,
publishWithAIAgent: false,
appType: APP_TYPE.PC,
},
appActivity: {
modifier: "",
Expand Down
2 changes: 1 addition & 1 deletion packages/illa-public-component
Submodule illa-public-component updated 37 files
+84 −8 CreateAppModal/CreateFromTemplate/CreateOptions/index.tsx
+18 −7 CreateAppModal/CreateFromTemplate/CreateOptions/interface.ts
+24 −2 CreateAppModal/CreateFromTemplate/CreateOptions/style.ts
+28 −0 CreateAppModal/CreateFromTemplate/TemplateContent/CreateBlankApp.tsx
+8 −20 CreateAppModal/CreateFromTemplate/TemplateContent/index.tsx
+8 −0 CreateAppModal/CreateFromTemplate/TemplateContent/interface.ts
+2 −1 CreateAppModal/CreateFromTemplate/index.tsx
+3 −9 CreateAppModal/CreateFromTemplate/interface.ts
+1 −0 CreateAppModal/index.tsx
+3 −0 Dashboard/AppCard/assets/desktop.svg
+4 −0 Dashboard/AppCard/assets/mobile.svg
+15 −2 Dashboard/AppCard/mobile/index.tsx
+3 −1 Dashboard/AppCard/mobile/interface.ts
+12 −0 Dashboard/AppCard/pc/index.tsx
+1 −0 ILLANet/errorFlag.ts
+70 −51 locales/cs-CZ.json
+70 −51 locales/da-DK.json
+70 −51 locales/de-DE.json
+70 −51 locales/el-GR.json
+70 −51 locales/en-US.json
+70 −51 locales/es-ES.json
+70 −51 locales/fi-FI.json
+70 −51 locales/fr-FR.json
+70 −51 locales/it-IT.json
+71 −52 locales/ja-JP.json
+70 −51 locales/ko-KR.json
+70 −51 locales/nl-NL.json
+70 −51 locales/no-NO.json
+70 −51 locales/pl-PL.json
+70 −51 locales/pt-PT.json
+70 −51 locales/ro-RO.json
+70 −51 locales/ru-RU.json
+70 −51 locales/sv-SE.json
+70 −51 locales/uk-UA.json
+68 −49 locales/zh-CN.json
+70 −44 publicConfig/app/index.ts
+5 −0 publicTypes/dashboard/appInfo.ts

0 comments on commit aa46423

Please sign in to comment.