Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesBochet committed Dec 16, 2024
1 parent 4c4e4ca commit 636bf90
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const SendInviteLinkEmail = ({
serverUrl,
}: SendInviteLinkEmailProps) => {
const workspaceLogo = workspace.logo
? getImageAbsoluteURI(workspace.logo, serverUrl)
? getImageAbsoluteURI({ imageUrl: workspace.logo, baseUrl: serverUrl })
: null;

return (
Expand Down
2 changes: 1 addition & 1 deletion packages/twenty-emails/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"types": ["vite/client"],
"baseUrl": ".",
"paths": {
"twenty-shared": ["packages/twenty-shared/src/*"]
"twenty-shared": ["../../packages/twenty-shared/dist"]
}
},
"files": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const PageFavicon = () => {
type="image/x-icon"
href={
getImageAbsoluteURI({
imageUrl: workspacePublicData?.logo,
imageUrl: workspacePublicData.logo,
baseUrl: REACT_APP_SERVER_BASE_URL,
}) ?? ''
}
Expand Down
2 changes: 1 addition & 1 deletion packages/twenty-front/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"~/*": ["packages/twenty-front/src/*"],
"twenty-ui": ["packages/twenty-ui/src/index.ts"],
"@ui/*": ["packages/twenty-ui/src/*"],
"twenty-shared": ["packages/twenty-shared/dist/index"],
"twenty-shared": ["packages/twenty-shared/dist"],
}
},
"files": [],
Expand Down
12 changes: 0 additions & 12 deletions packages/twenty-shared/.babelrc

This file was deleted.

0 comments on commit 636bf90

Please sign in to comment.