Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add feedback redesign #2487

Merged
merged 12 commits into from
Oct 15, 2024
Merged

Add feedback redesign #2487

merged 12 commits into from
Oct 15, 2024

Conversation

kattylucy
Copy link
Collaborator

@kattylucy kattylucy commented Oct 11, 2024

  • Product feedback and fixes (QA) on the new design
  • Add code for tinlake

#2471
#2484

  • Dev

Copy link

github-actions bot commented Oct 11, 2024

PR deployed in Google Cloud
URL: https://pr2487-app-ff-production.k-f.dev
Commit #: 9c69403
To access the functions directly check the corresponding deploy Action

Copy link

github-actions bot commented Oct 11, 2024

PR deployed in Google Cloud
URL: https://app-pr2487.k-f.dev
Commit #: 9c69403
To access the functions directly check the corresponding deploy Action

@kattylucy kattylucy force-pushed the 2471_feedback_redesign branch 3 times, most recently from 517a559 to 5727c81 Compare October 15, 2024 08:03
@kattylucy kattylucy marked this pull request as ready for review October 15, 2024 08:03
@kattylucy kattylucy force-pushed the 2471_feedback_redesign branch from ffee519 to 2155682 Compare October 15, 2024 10:50
@kattylucy kattylucy force-pushed the 2471_feedback_redesign branch from 48701d2 to 8d23257 Compare October 15, 2024 12:59
@@ -24,6 +25,10 @@ export type MetaData = {
}
}

type TinlakeTranchesKey = 'silver' | 'blocktowerThree' | 'blocktowerFour'
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
type TinlakeTranchesKey = 'silver' | 'blocktowerThree' | 'blocktowerFour'
type TinlakeTranchesKey = 'NS3' | 'BT3' | 'BT4'

@@ -50,6 +57,33 @@ const StyledCard = styled(Card)`
}
`

const tinlakeTranches = {
silver: {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
silver: {
NS3: {

shortDescription: ' Real estate bridge loans for fix and flip projects, maturing in 12-24 months.',
InvestorType: 'Qualified Investors',
},
blocktowerThree: {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
blocktowerThree: {
BT3: {

shortDescription: ' Investment-grade consumer ABS, auto ABS, and CLOs under 4 years.',
InvestorType: 'Private',
},
blocktowerFour: {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
blocktowerFour: {
BT4: {

{text}
</Text>
)
const isTinlakePool =
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
const isTinlakePool =
const isTinlakePool = poolId.startsWith('0x')

this should be enough since only tinlake pools have hex coded IDs

})
.reverse()
const tinlakeObjKey = () => {
if (name?.includes('Silver')) return 'silver'
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
if (name?.includes('Silver')) return 'silver'
if (name?.includes('New Silver 3')) return 'NS3'

I think you need to be more specific here since we have two other New Silver pools (in the archive)

.reverse()
const tinlakeObjKey = () => {
if (name?.includes('Silver')) return 'silver'
else if (name?.includes('BlockTower Series 3')) return 'blocktowerThree'
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
else if (name?.includes('BlockTower Series 3')) return 'blocktowerThree'
else if (name?.includes('BlockTower Series 3')) return 'BT3'

const tinlakeObjKey = () => {
if (name?.includes('Silver')) return 'silver'
else if (name?.includes('BlockTower Series 3')) return 'blocktowerThree'
else if (name?.includes('BlockTower Series 4')) return 'blocktowerFour'
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
else if (name?.includes('BlockTower Series 4')) return 'blocktowerFour'
else if (name?.includes('BlockTower Series 4')) return 'BT4'

Copy link
Collaborator

@sophialittlejohn sophialittlejohn left a comment

Choose a reason for hiding this comment

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

Nice work!! Let's merge this and I'll address the comments in a follow up PR

@kattylucy kattylucy merged commit 466b704 into main Oct 15, 2024
14 checks passed
@kattylucy kattylucy deleted the 2471_feedback_redesign branch October 15, 2024 15:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants