Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/9-2024-bug-fixes-updates' into 9…
Browse files Browse the repository at this point in the history
…-2024-bug-fixes-updates
  • Loading branch information
wwills2 committed Sep 26, 2024
2 parents cb3ca5d + b36da10 commit 86a1f27
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/renderer/pages/MyProjectsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const MyProjectsPage: React.FC = () => {

{myOrganization && <ProjectXlsUploadDownloadButtons orgUid={orgUid} order={order} search={search} />}
<SyncIndicator detailed={true} orgUid={orgUid} />
{orgUid && <OrgUidBadge orgUid={orgUid} registryId={organizationsMap?.[orgUid].registryId} />}
{orgUid && <OrgUidBadge orgUid={orgUid} registryId={organizationsMap?.[orgUid]?.registryId} />}
</div>
<div className="h-13">
<Tabs onActiveTabChange={(tab: TabTypes) => setActiveTab(tab)}>
Expand Down Expand Up @@ -167,7 +167,7 @@ const MyProjectsPage: React.FC = () => {
title={
<p>
<FormattedMessage id="transfer" />
{(processedStagingData.transfer || importedTransferOfferData) && ' (!) '}
{(processedStagingData.transfer || importedTransferOfferData?.changes) && ' (!) '}
</p>
}
/>
Expand Down
5 changes: 4 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import path from 'path';

// https://vitejs.dev/config/
export default defineConfig({
base: './',
base: './',
plugins: [react()],
resolve: {
alias: {
Expand All @@ -15,4 +15,7 @@ export default defineConfig({
// Specify the directory to output the build files
outDir: path.resolve(__dirname, 'build/renderer'),
},
server: {
port: 5173,
},
});

0 comments on commit 86a1f27

Please sign in to comment.